Add probe yaml examples

This commit is contained in:
giri.kuncoro
2020-06-06 18:08:13 +07:00
parent 838d1b180c
commit 9cb190a82b
3 changed files with 64 additions and 0 deletions
@@ -0,0 +1,22 @@
apiVersion: v1
kind: Pod
metadata:
name: goproxy
labels:
app: goproxy
spec:
containers:
- name: goproxy
image: k8s.gcr.io/goproxy:0.1
ports:
- containerPort: 8080
readinessProbe:
tcpSocket:
port: 8080
initialDelaySeconds: 5
periodSeconds: 10
livenessProbe:
tcpSocket:
port: 8080
initialDelaySeconds: 15
periodSeconds: 20