[stable/kube-state-metrics] Update liveness- and readinessProbes (#16284)

As changed downstream in https://github.com/kubernetes/kube-state-metrics/commit/be1a657608c3ff2d224c371e5265e77a6ddfa6bb

Signed-off-by: Manuel Rüger <manuel@rueg.eu>
This commit is contained in:
Manuel Rüger
2019-08-13 09:53:45 -07:00
committed by Kubernetes Prow Robot
parent 081dff3bd5
commit cb63ff4a82
2 changed files with 9 additions and 2 deletions
+1 -1
View File
@@ -6,7 +6,7 @@ keywords:
- monitoring
- prometheus
- kubernetes
version: 2.2.3
version: 2.3.0
appVersion: 1.7.2
home: https://github.com/kubernetes/kube-state-metrics/
sources:
@@ -120,12 +120,19 @@ spec:
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
ports:
- containerPort: 8080
readinessProbe:
livenessProbe:
httpGet:
path: /healthz
port: 8080
initialDelaySeconds: 5
timeoutSeconds: 5
readinessProbe:
httpGet:
path: /
port: 8080
initialDelaySeconds: 5
timeoutSeconds: 5
resources:
{{ toYaml .Values.resources | indent 12 }}
{{- if .Values.affinity }}