Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Kirill Ilin
5644b8f1ff
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 <noreply@anthropic.com>
Signed-off-by: Kirill Ilin <stitch14@yandex.ru>
2026-03-06 19:56:57 +05:00

View file

@ -132,7 +132,7 @@ spec:
protocol: TCP
livenessProbe:
httpGet:
path: /
path: /health/live
port: http
initialDelaySeconds: 120
timeoutSeconds: 5