Compare commits

...

2 commits

Author SHA1 Message Date
862dbbf203 fix(bookstack): point probes at /status instead of / (DEV-528) (#7) 2026-08-23 11:56:58 +00:00
cto-agent
8a80068b95 fix(bookstack): point probes at /status instead of / (DEV-528)
BookStack's `/` returns 302 → /login, which caused Kubernetes to
raise ProbeWarning events on the readiness (and liveness) probes.
`/status` is BookStack's built-in monitoring endpoint: it returns
200 without a redirect and is designed for health checks.

Co-Authored-By: Paperclip <noreply@paperclip.ing>
2026-08-23 11:56:37 +00:00

View file

@ -200,7 +200,7 @@ spec:
cpu: "1000m"
livenessProbe:
httpGet:
path: /
path: /status
port: 80
initialDelaySeconds: 60
periodSeconds: 10
@ -208,7 +208,7 @@ spec:
failureThreshold: 6
readinessProbe:
httpGet:
path: /
path: /status
port: 80
initialDelaySeconds: 30
periodSeconds: 5