From 8a2f566a5aaf4974c0accce61d79f11ca365d4e1 Mon Sep 17 00:00:00 2001 From: Christoph Petrausch Date: Sun, 15 Feb 2026 22:53:35 +0100 Subject: [PATCH] Fix readiness and health check path --- helm/values.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/helm/values.yaml b/helm/values.yaml index 7a3c3e5..2b8bdb7 100644 --- a/helm/values.yaml +++ b/helm/values.yaml @@ -139,11 +139,11 @@ resources: {} # This is to setup the liveness and readiness probes more information can be found here: https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-startup-probes/ livenessProbe: httpGet: - path: / + path: /metrics port: http readinessProbe: httpGet: - path: / + path: /metrics port: http # This section is for setting up autoscaling more information can be found here: https://kubernetes.io/docs/concepts/workloads/autoscaling/