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

     1  apiVersion: apps/v1
     2  kind: Deployment
     3  metadata:
     4    name: main
     5  spec:
     6    replicas: 1
     7    progressDeadlineSeconds: 10
     8    selector:
     9      matchLabels:
    10        my-label: whatever
    11    template:
    12      metadata:
    13        labels:
    14          my-label: whatever
    15      spec:
    16        containers:
    17          - name: main
    18            command: ["sleep", "999"]
    19            image: alpine:3.10.2
    20            imagePullPolicy: IfNotPresent
    21