mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
33 lines
No EOL
638 B
YAML
33 lines
No EOL
638 B
YAML
apiVersion: v1
|
|
kind: Pod
|
|
metadata:
|
|
labels:
|
|
test: probe
|
|
name: probe
|
|
spec:
|
|
containers:
|
|
- name: check-readiness
|
|
image: k8s.gcr.io/busybox
|
|
args:
|
|
- /bin/sh
|
|
- -c
|
|
- touch /tmp/healthy; sleep 30; rm -rf /tmp/healthy; sleep 600
|
|
readinessProbe:
|
|
successThreshold: 3
|
|
exec:
|
|
command:
|
|
- cat
|
|
- /tmp/healthy
|
|
- name: check-liveness
|
|
image: k8s.gcr.io/liveness
|
|
args:
|
|
- /server
|
|
livenessProbe:
|
|
httpGet:
|
|
path: /healthz
|
|
port: 8080
|
|
scheme: HTTP
|
|
httpHeaders:
|
|
- name: Custom-Header
|
|
value: Awesome
|
|
periodSeconds: 3 |