github.com/argoproj/argo-cd/v2@v2.10.5/test/e2e/testdata/multi-namespace/deployment.yaml (about) 1 apiVersion: apps/v1 2 kind: Deployment 3 metadata: 4 name: helm-guestbook 5 labels: 6 app: helm-guestbook 7 spec: 8 replicas: 0 9 selector: 10 matchLabels: 11 app: helm-guestbook 12 template: 13 metadata: 14 labels: 15 app: helm-guestbook 16 spec: 17 containers: 18 - name: helm-guestbook 19 image: quay.io/argoprojlabs/argocd-e2e-container:0.2 20 imagePullPolicy: IfNotPresent 21 ports: 22 - name: http 23 containerPort: 80 24 protocol: TCP 25 livenessProbe: 26 httpGet: 27 path: / 28 port: http 29 readinessProbe: 30 httpGet: 31 path: / 32 port: http