configure-liveness-readiness-startup-probes RU

This commit is contained in:
Жаков Виталий
2020-05-20 00:07:57 +05:00
parent 58811dfd7c
commit c6f76c6be2
6 changed files with 418 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