This commit is contained in:
Philip Haupt
2025-11-08 17:43:38 +01:00
parent f792354e79
commit 2fdf831057
2 changed files with 5 additions and 5 deletions

View File

@@ -129,7 +129,7 @@ spec:
- --hostname=https://iam.borninpain.de - --hostname=https://iam.borninpain.de
env: env:
- name: KC_HTTP_RELATIVE_PATH - name: KC_HTTP_RELATIVE_PATH
value: /auth value: /
- name: KC_CACHE - name: KC_CACHE
value: ispn value: ispn
- name: KC_CACHE_STACK - name: KC_CACHE_STACK
@@ -162,7 +162,7 @@ spec:
imagePullPolicy: IfNotPresent imagePullPolicy: IfNotPresent
livenessProbe: livenessProbe:
httpGet: httpGet:
path: /auth/health/live path: /health/live
port: http-internal port: http-internal
scheme: HTTP scheme: HTTP
initialDelaySeconds: 0 initialDelaySeconds: 0
@@ -180,7 +180,7 @@ spec:
protocol: TCP protocol: TCP
readinessProbe: readinessProbe:
httpGet: httpGet:
path: /auth/health/ready path: /health/ready
port: http-internal port: http-internal
scheme: HTTP scheme: HTTP
initialDelaySeconds: 10 initialDelaySeconds: 10
@@ -192,7 +192,7 @@ spec:
startupProbe: startupProbe:
failureThreshold: 60 failureThreshold: 60
httpGet: httpGet:
path: /auth/health path: /health
port: http-internal port: http-internal
scheme: HTTP scheme: HTTP
initialDelaySeconds: 15 initialDelaySeconds: 15

View File

@@ -438,7 +438,7 @@ health:
http: http:
# For backwards compatibility reasons we set this to the value used by previous Keycloak versions. # For backwards compatibility reasons we set this to the value used by previous Keycloak versions.
relativePath: "/auth" relativePath: "/"
internalPort: http-internal internalPort: http-internal
internalScheme: HTTP internalScheme: HTTP