You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
kubernetes-hands-on/11-probes/01-liveness-probe.yml

17 lines
283 B
YAML

---
apiVersion: v1
kind: Pod
metadata:
name: liveness-probe-pod
spec:
containers:
- name: liveness-probe-pod
image: nginx
livenessProbe:
exec:
command:
- exit
- "1"
initialDelaySeconds: 5
periodSeconds: 5