Skip to content

Commit

Permalink
[Helm] Make Keycloak admin username and password configurable (eclips…
Browse files Browse the repository at this point in the history
…e-che#16849)

Signed-off-by: Mykola Morhun <mmorhun@redhat.com>
  • Loading branch information
mmorhun committed May 5, 2020
1 parent 8c2be9a commit 6333d89
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ spec:
- name: DB_PASSWORD
value: keycloak
- name: KEYCLOAK_USER
value: admin
value: {{ .Values.keycloakAdminUserName }}
- name: KEYCLOAK_PASSWORD
value: admin
value: {{ .Values.keycloakAdminUserPassword }}
- name: CHE_HOST
value: {{ template "cheHost" . }}
- name: ROUTING_SUFFIX
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,5 @@

image: quay.io/eclipse/che-keycloak:nightly
requireAdminPasswordChange: true
keycloakAdminUserName: admin
keycloakAdminUserPassword: admin

0 comments on commit 6333d89

Please sign in to comment.