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 <james@notjam.es>
This commit is contained in:
James Ward
2026-03-07 05:02:05 -05:00
committed by GitHub
parent 5230b50c8e
commit df650b0284

View File

@@ -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