[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
2021-04-25 18:21:11 +02:00
parent 3aafcf0c01
commit 55248f5f11
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 }}