github.com/operator-framework/operator-lifecycle-manager@v0.30.0/pkg/controller/operators/testdata/fixtures/pod.yaml (about)

     1  apiVersion: v1
     2  kind: Pod
     3  metadata:
     4    name: foo
     5    namespace: default
     6  spec:
     7    containers:
     8    - command:
     9      - bar
    10      - --baz
    11      image: my.registry/foo/bar:v1.0.0
    12      imagePullPolicy: IfNotPresent
    13      livenessProbe:
    14        failureThreshold: 8
    15        httpGet:
    16          host: 172.18.0.2
    17          path: /healthz
    18          port: 6443
    19          scheme: HTTPS
    20        initialDelaySeconds: 15
    21        periodSeconds: 10
    22        successThreshold: 1
    23        timeoutSeconds: 15
    24      name: bar
    25      resources:
    26        requests:
    27          cpu: 250m
    28      terminationMessagePath: /dev/termination-log
    29      terminationMessagePolicy: File
    30    restartPolicy: Always
    31    terminationGracePeriodSeconds: 30
    32