From 5644b8f1ff191a53c14a1d67d37b00f6618d15ea Mon Sep 17 00:00:00 2001 From: Kirill Ilin Date: Fri, 6 Mar 2026 19:56:57 +0500 Subject: [PATCH] fix(keycloak): fix liveness probe path to avoid redirect warning Change liveness probe path from `/` to `/health/live` which returns 200 OK instead of 302 redirect. The redirect caused kubelet to log "Probe terminated redirects" warnings after Keycloak upgrade. Co-Authored-By: Claude Signed-off-by: Kirill Ilin --- packages/system/keycloak/templates/sts.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/system/keycloak/templates/sts.yaml b/packages/system/keycloak/templates/sts.yaml index c7506f8f..31b50646 100644 --- a/packages/system/keycloak/templates/sts.yaml +++ b/packages/system/keycloak/templates/sts.yaml @@ -132,7 +132,7 @@ spec: protocol: TCP livenessProbe: httpGet: - path: / + path: /health/live port: http initialDelaySeconds: 120 timeoutSeconds: 5