From a76ff248bd7812bdadd33b1ef90071c65b51c852 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Moritz=20J=C3=B6rg?= Date: Wed, 25 Jun 2025 16:58:08 +0200 Subject: [PATCH] fix(plume): Probes on healthz --- charts/plume/templates/deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/plume/templates/deployment.yaml b/charts/plume/templates/deployment.yaml index 7fc7c2b0..de56d753 100644 --- a/charts/plume/templates/deployment.yaml +++ b/charts/plume/templates/deployment.yaml @@ -41,11 +41,11 @@ spec: {{- toYaml .Values.env | nindent 12 }} livenessProbe: httpGet: - path: / + path: /healthz port: http readinessProbe: httpGet: - path: / + path: /healthz port: http resources: {{- toYaml .Values.resources | nindent 12 }}