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,21 @@
apiVersion: v1
kind: Pod
metadata:
labels:
test: liveness
name: liveness-http
spec:
containers:
- name: liveness
image: k8s.gcr.io/liveness
args:
- /server
livenessProbe:
httpGet:
path: /healthz
port: 8080
httpHeaders:
- name: Custom-Header
value: Awesome
initialDelaySeconds: 3
periodSeconds: 3