Files
website/content/fr/examples/pods/probe/http-liveness.yaml
Cheikhrouhou ines 55892e5367 translate liveness fr
2019-12-20 21:12:06 +01:00

22 lines
384 B
YAML

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