Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to keycloak 26 #4951

Merged
merged 1 commit into from
Dec 13, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 15 additions & 12 deletions kubernetes/keycloak/keycloak_values.yaml
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
image:
registry: docker.io
repository: bitnami/keycloak
tag: 23.0.7
tag: 26.0.5

auth:
adminUser: keycloak
existingSecret: "keycloak-credentials"
passwordSecretKey: "password"
passwordSecretKey: "password"

tls:
enabled: true
Expand Down Expand Up @@ -46,7 +46,7 @@ initContainers:
cp -R /themes/* /theme/hmda
command:
- sh
image: hmda/keycloak-theme-provider:mfaLogoCorrected
image: hmda/keycloak-theme-provider:latest
imagePullPolicy: Always
resources: {}
terminationMessagePath: /dev/termination-log
Expand All @@ -59,26 +59,29 @@ initContainers:
- -c
- |
echo "Copying SPI..."
cp -rv keycloak-authenticator-hmda-24.0.3.jar /spi
cp -rv keycloak-authenticator-hmda-4.2.1.Final.jar /spi
command:
- sh
image: hmda/keycloak-spi-provider:v2.4.2
imagePullPolicy: Always
resources: {}
terminationMessagePath: /dev/termination-log
terminationMessagePolicy: File
image: hmda/keycloak-spi-provider:v2.7.4
volumeMounts:
- name: spi
mountPath: /spi

extraEnvVars:
- name: KC_PROXY
value: reencrypt
- name: KC_HOSTNAME_STRICT
value: 'true'

postgresql:
enabled: false

externalDatabase:
user: keycloak
database: keycloak_v2
existingSecret: "keycloak-postgresql"
existingSecretHostKey: "host"
existingSecretDatabaseKey: "database"
existingSecretUserKey: "username"
existingSecretPasswordKey: "postgresql-password"

logging:
level: INFO
level: INFO
Loading