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