Skip to content

Commit

Permalink
chore(kubernetes): migrate away from deprecated env variable names (#…
Browse files Browse the repository at this point in the history
…3355)

Based on the following log warnings:

```
2024-12-03 18:56:06,497 WARN  [org.keycloak.services] (main) KC-SERVICES0110: Environment variable 'KEYCLOAK_ADMIN' is deprecated, use 'KC_BOOTSTRAP_ADMIN_USERNAME' instead
2024-12-03 18:56:06,497 WARN  [org.keycloak.services] (main) KC-SERVICES0110: Environment variable 'KEYCLOAK_ADMIN_PASSWORD' is deprecated, use 'KC_BOOTSTRAP_ADMIN_PASSWORD' instead
```
  • Loading branch information
corneliusroemer authored Dec 4, 2024
1 parent e4b4fc4 commit 6343bb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kubernetes/loculus/templates/keycloak-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ spec:
secretKeyRef:
name: keycloak-database
key: password
- name: KEYCLOAK_ADMIN
- name: KC_BOOTSTRAP_ADMIN_USERNAME
value: "admin"
- name: KEYCLOAK_ADMIN_PASSWORD
- name: KC_BOOTSTRAP_ADMIN_PASSWORD
valueFrom:
secretKeyRef:
name: keycloak-admin
Expand Down

0 comments on commit 6343bb6

Please sign in to comment.