github.com/argoproj/argo-cd@v1.8.7/test/e2e/testdata/multi-namespace/deployment.yaml (about)

     1  apiVersion: extensions/v1beta1
     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: "gcr.io/heptio-images/ks-guestbook-demo: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