diff options
author | 2024-08-24 03:54:57 +0100 | |
---|---|---|
committer | 2024-08-24 03:54:57 +0100 | |
commit | d9f5e4774b186168ab3c8a31d4fed679bae2bed9 (patch) | |
tree | 9ccda29220ff31f4d816a3952de8c96b348e6e6c /kubernetes | |
parent | Update quay.io/keycloak/keycloak Docker tag to v25.0.4 (diff) |
Move Keycloak to custom image
Diffstat (limited to 'kubernetes')
-rw-r--r-- | kubernetes/namespaces/tooling/keycloak/configmap.yaml | 2 | ||||
-rw-r--r-- | kubernetes/namespaces/tooling/keycloak/deployment.yaml | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/kubernetes/namespaces/tooling/keycloak/configmap.yaml b/kubernetes/namespaces/tooling/keycloak/configmap.yaml index bf3c49d..ca02049 100644 --- a/kubernetes/namespaces/tooling/keycloak/configmap.yaml +++ b/kubernetes/namespaces/tooling/keycloak/configmap.yaml @@ -7,7 +7,7 @@ data: # Set the hostname for outbound traffic and enable the feature to read that # environment variable KC_HOSTNAME: "id.pydis.wtf" - KC_FEATURES: "hostname:v2" + KC_FEATURES: "hostname:v2,passkeys" # Set the location of the TLS certificates generated by Vault KC_HTTPS_CERTIFICATE_FILE: "/vault/secrets/server.crt" diff --git a/kubernetes/namespaces/tooling/keycloak/deployment.yaml b/kubernetes/namespaces/tooling/keycloak/deployment.yaml index 6957b13..a68ac57 100644 --- a/kubernetes/namespaces/tooling/keycloak/deployment.yaml +++ b/kubernetes/namespaces/tooling/keycloak/deployment.yaml @@ -32,8 +32,8 @@ spec: serviceAccountName: internal-tls-issuer containers: - name: keycloak - image: quay.io/keycloak/keycloak:25.0.4 - args: ["start"] + image: ghcr.io/owl-corp/keycloak:25.0.4 + imagePullPolicy: Always envFrom: - secretRef: name: keycloak-secret-env |