1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2024-12-14 11:57:48 +00:00
kyverno/test/resources/resource_validate_healthChecks.yaml
shivkumar dudhani 4e5f551fa7 clean up
2019-10-14 14:10:34 -07:00

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