2019-12-20 20:12:06 +00:00
|
|
|
apiVersion: v1
|
|
|
|
kind: Pod
|
|
|
|
metadata:
|
|
|
|
labels:
|
|
|
|
test: liveness
|
|
|
|
name: liveness-exec
|
|
|
|
spec:
|
|
|
|
containers:
|
|
|
|
- name: liveness
|
2023-03-09 12:08:50 +00:00
|
|
|
image: registry.k8s.io/busybox
|
2019-12-20 20:12:06 +00:00
|
|
|
args:
|
|
|
|
- /bin/sh
|
|
|
|
- -c
|
2022-05-18 23:16:52 +00:00
|
|
|
- touch /tmp/healthy; sleep 30; rm -f /tmp/healthy; sleep 600
|
2019-12-20 20:12:06 +00:00
|
|
|
livenessProbe:
|
|
|
|
exec:
|
|
|
|
command:
|
|
|
|
- cat
|
|
|
|
- /tmp/healthy
|
|
|
|
initialDelaySeconds: 5
|
|
|
|
periodSeconds: 5
|