Add verbose and env variables
This commit is contained in:
parent
15cbb14504
commit
b4cb333b16
1 changed files with 10 additions and 2 deletions
|
@ -21,9 +21,16 @@ spec:
|
||||||
image: quay.io/keycloak/keycloak:26.1
|
image: quay.io/keycloak/keycloak:26.1
|
||||||
# args: [ "start" ]
|
# args: [ "start" ]
|
||||||
env:
|
env:
|
||||||
- name: KC_BOOTSTRAP_ADMIN_USERNAME
|
- name: KEYCLOAK_USER
|
||||||
value: admin
|
value: admin
|
||||||
- name: KC_BOOTSTRAP_ADMIN_PASSWORD
|
- name: KEYCLOAK_PASSWORD
|
||||||
|
valueFrom:
|
||||||
|
secretKeyRef:
|
||||||
|
name: keycloak-admin-secret
|
||||||
|
key: password
|
||||||
|
- name: KEYCLOAK_ADMIN
|
||||||
|
value: admin
|
||||||
|
- name: KEYCLOAK_ADMIN_PASSWORD
|
||||||
valueFrom:
|
valueFrom:
|
||||||
secretKeyRef:
|
secretKeyRef:
|
||||||
name: keycloak-admin-secret
|
name: keycloak-admin-secret
|
||||||
|
@ -50,6 +57,7 @@ spec:
|
||||||
- start
|
- start
|
||||||
- --https-certificate-file=/etc/ssl/certs/cert.pem
|
- --https-certificate-file=/etc/ssl/certs/cert.pem
|
||||||
- --https-certificate-key-file=/etc/ssl/certs/key.pem
|
- --https-certificate-key-file=/etc/ssl/certs/key.pem
|
||||||
|
- --verbose
|
||||||
volumes:
|
volumes:
|
||||||
- name: storage
|
- name: storage
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
|
|
Loading…
Add table
Reference in a new issue