1
0
Fork 0
mirror of https://github.com/kyverno/kyverno.git synced 2025-03-06 07:57:07 +00:00
kyverno/test/resources/resource_validate_healthChecks.yaml

33 lines
638 B
YAML
Raw Normal View History

2019-07-17 13:31:00 -07:00
apiVersion: v1
kind: Pod
metadata:
labels:
test: probe
name: probe
spec:
containers:
2019-07-21 16:10:34 -07:00
- name: check-readiness
2019-07-17 13:31:00 -07:00
image: k8s.gcr.io/busybox
args:
- /bin/sh
- -c
- touch /tmp/healthy; sleep 30; rm -rf /tmp/healthy; sleep 600
readinessProbe:
2019-08-30 00:22:37 -07:00
successThreshold: 3
2019-07-17 13:31:00 -07:00
exec:
command:
- cat
- /tmp/healthy
2019-07-21 16:10:34 -07:00
- name: check-liveness
2019-07-17 13:31:00 -07:00
image: k8s.gcr.io/liveness
args:
- /server
livenessProbe:
httpGet:
path: /healthz
port: 8080
2019-08-30 00:22:37 -07:00
scheme: HTTP
2019-07-17 13:31:00 -07:00
httpHeaders:
- name: Custom-Header
value: Awesome
periodSeconds: 3