argocd-training-examples/example-app/example-php-docker-helloworld-deployment.yaml
Thomas Philipona eb54f2ed2a
Add example App
2020-09-02 11:47:27 +02:00

20 lines
452 B
YAML

apiVersion: apps/v1
kind: Deployment
metadata:
name: example-php-docker-helloworld
spec:
replicas: 1
revisionHistoryLimit: 3
selector:
matchLabels:
app: example-php-docker-helloworld
template:
metadata:
labels:
app: example-php-docker-helloworld
spec:
containers:
- image: appuio/example-php-docker-helloworld
name: example-php-docker-helloworld
ports:
- containerPort: 8080