[bitnami/kafka] change probe path for kafka-exporter to /healthz (#25559)

* change probe path to /healthz

Signed-off-by: horihel <heiko.helmle@horiba.com>

* bump bugfix version

Signed-off-by: horihel <heiko.helmle@horiba.com>

---------

Signed-off-by: horihel <heiko.helmle@horiba.com>
This commit is contained in:
horihel
2024-05-07 09:31:54 +02:00
committed by GitHub
parent ec68ea4d66
commit 533146d57d
2 changed files with 4 additions and 4 deletions

View File

@@ -141,7 +141,7 @@ spec:
{{- else if .Values.metrics.kafka.livenessProbe.enabled }}
livenessProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.metrics.kafka.livenessProbe "enabled") "context" $) | nindent 12 }}
httpGet:
path: /metrics
path: /healthz
port: metrics
{{- end }}
{{- if .Values.metrics.kafka.customReadinessProbe }}
@@ -149,7 +149,7 @@ spec:
{{- else if .Values.metrics.kafka.readinessProbe.enabled }}
readinessProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.metrics.kafka.readinessProbe "enabled") "context" $) | nindent 12 }}
httpGet:
path: /metrics
path: /healthz
port: metrics
{{- end }}
{{- if .Values.metrics.kafka.customStartupProbe }}
@@ -157,7 +157,7 @@ spec:
{{- else if .Values.metrics.kafka.startupProbe.enabled }}
startupProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.metrics.kafka.startupProbe "enabled") "context" $) | nindent 12 }}
httpGet:
path: /metrics
path: /healthz
port: metrics
{{- end }}
{{- if .Values.metrics.kafka.resources }}