kubernetes/test/fixtures/doc-yaml/user-guide/liveness/http-liveness.yaml.in
Dr. Stefan Schimanski ace8fd945d test: fix liveness pod
2019-09-10 10:15:11 +02:00

22 lines
396 B
YAML

apiVersion: v1
kind: Pod
metadata:
labels:
test: liveness
name: liveness-http
spec:
containers:
- args:
- liveness
image: {{.AgnhostImage}}
livenessProbe:
httpGet:
path: /healthz
port: 8080
httpHeaders:
- name: X-Custom-Header
value: Awesome
initialDelaySeconds: 15
timeoutSeconds: 1
name: liveness-http