From df650b0284d7ea4040b458f77e3b531fa61d5217 Mon Sep 17 00:00:00 2001 From: James Ward Date: Sat, 7 Mar 2026 05:02:05 -0500 Subject: [PATCH] fix(helm): use expected health endpoint (#1142) the liveness / readiness probes were making requests to the root of the web server. this causes the health check to fail in some cases because a redirect may occur in unexpected ways Instead, we can test against the rails "up" health controller Signed-off-by: James Ward --- charts/sure/values.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/sure/values.yaml b/charts/sure/values.yaml index f6d473044..d0635b92f 100644 --- a/charts/sure/values.yaml +++ b/charts/sure/values.yaml @@ -314,7 +314,7 @@ web: # Probes livenessProbe: httpGet: - path: / + path: /up port: http initialDelaySeconds: 20 periodSeconds: 10 @@ -322,7 +322,7 @@ web: failureThreshold: 6 readinessProbe: httpGet: - path: / + path: /up port: http initialDelaySeconds: 10 periodSeconds: 5 @@ -330,7 +330,7 @@ web: failureThreshold: 6 startupProbe: httpGet: - path: / + path: /up port: http failureThreshold: 30 periodSeconds: 5