website/content/en/docs/tasks/configure-pod-container/http-liveness.yaml

22 lines
386 B
YAML
Raw Normal View History

apiVersion: v1
kind: Pod
metadata:
labels:
test: liveness
name: liveness-http
spec:
containers:
- name: liveness
2017-12-22 17:55:16 +00:00
image: k8s.gcr.io/liveness
args:
- /server
livenessProbe:
httpGet:
path: /healthz
port: 8080
httpHeaders:
- name: X-Custom-Header
value: Awesome
initialDelaySeconds: 3
periodSeconds: 3