Write new Task: Configuring Liveness and Readiness Probes

Addressed reviewer comments.

Addressed more reviewer comments.

Fix broken link.
This commit is contained in:
steveperry-53
2016-12-30 03:47:49 -08:00
committed by steveperry-53
parent bb4c22b60b
commit 1e05667805
5 changed files with 323 additions and 78 deletions
@@ -0,0 +1,26 @@
apiVersion: v1
kind: Pod
metadata:
labels:
test: liveness
name: liveness-exec
spec:
containers:
- name: liveness
args:
- /bin/sh
- -c
- touch /tmp/healthy; sleep 30; rm -rf /tmp/healthy; sleep 600
image: gcr.io/google_containers/busybox
livenessProbe:
exec:
command:
- cat
- /tmp/healthy
initialDelaySeconds: 5
periodSeconds: 5