fix(k8s): enable keycloak health endpoints and increase probe delays
All checks were successful
CI Pipeline / Backend Build & Test (push) Successful in 1m2s
CI Pipeline / Frontend Lint, Test & Build (push) Successful in 29s
CI Pipeline / Infrastructure Validation (push) Successful in 3s

This commit is contained in:
WorkClub Automation
2026-03-10 22:07:02 +01:00
parent 3c41f0e40c
commit 90ae752652

View File

@@ -30,16 +30,16 @@ spec:
httpGet:
path: /health/ready
port: http
initialDelaySeconds: 10
initialDelaySeconds: 40
periodSeconds: 10
timeoutSeconds: 5
failureThreshold: 2
failureThreshold: 3
livenessProbe:
httpGet:
path: /health/live
port: http
initialDelaySeconds: 20
initialDelaySeconds: 60
periodSeconds: 15
timeoutSeconds: 5
failureThreshold: 3
@@ -79,3 +79,5 @@ spec:
value: "edge"
- name: KC_HTTP_ENABLED
value: "true"
- name: KC_HEALTH_ENABLED
value: "true"