...

Text file src/k8s.io/kubernetes/test/fixtures/doc-yaml/user-guide/liveness/http-liveness.yaml.in

Documentation: k8s.io/kubernetes/test/fixtures/doc-yaml/user-guide/liveness

     1apiVersion: v1
     2kind: Pod
     3metadata:
     4  labels:
     5    test: liveness
     6  name: liveness-http
     7spec:
     8  containers:
     9  - args:
    10    - liveness
    11    image: {{.AgnhostImage}}
    12    livenessProbe:
    13      httpGet:
    14        path: /healthz
    15        port: 8080
    16        httpHeaders:
    17          - name: X-Custom-Header
    18            value: Awesome
    19      initialDelaySeconds: 15
    20      timeoutSeconds: 1
    21    name: liveness-http

View as plain text