From 8a80068b95ca6984cf392f0fe07122c915233845 Mon Sep 17 00:00:00 2001 From: cto-agent Date: Sun, 23 Aug 2026 11:56:37 +0000 Subject: [PATCH] fix(bookstack): point probes at /status instead of / (DEV-528) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- apps/bookstack/bookstack-deployment.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/bookstack/bookstack-deployment.yaml b/apps/bookstack/bookstack-deployment.yaml index 2159704..4cedf3d 100644 --- a/apps/bookstack/bookstack-deployment.yaml +++ b/apps/bookstack/bookstack-deployment.yaml @@ -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 -- 2.45.3