Code development platform for open source projects from the European Union institutions

Skip to content
Snippets Groups Projects
Commit d419699b authored by Marco Amoia's avatar Marco Amoia
Browse files

Merge branch 'feature/fix-helm-charts' into 'develop'

fix helm chart

See merge request !104
parents 58df2768 3fb6b33a
No related branches found
No related tags found
2 merge requests!106Release,!104fix helm chart
Pipeline #219931 passed with warnings
......@@ -35,6 +35,10 @@ The environment variables listed below are used to define the connection details
- This value is generated using the `microservices.backend.url` Helm template and points to the `/auth` endpoint of the Keycloak service.
- `KEYCLOAK_APP_REALM`: The realm to be used for the application within Keycloak.
- Value is derived from the `global.profile` specified in the Helm values.
- `KEYCLOAK_MASTER_USER`: The username to be used for the master realm in keycloak.
- Value is derived from the `keycloak.master.user` specified in the Helm values.
- `KEYCLOAK_MASTER_PASSWORD`: The password to be used for the master realm in keycloak.
- Value is derived from the `keycloak.master.password` specified in the Helm values.
### Client Authority Configuration
......@@ -71,4 +75,9 @@ redis:
port: "6379"
username: "default"
password: "admin"
keycloak:
master:
user: "user"
password: "admin"
```
......@@ -14,5 +14,8 @@ data:
KEYCLOAK_URL: "{{- include "microservices.backend.url" . }}/auth"
KEYCLOAK_APP_REALM: "{{ .Values.global.profile }}"
KEYCLOAK_MASTER_USER: "{{ .Values.keycloak.master.user }}"
KEYCLOAK_MASTER_PASSWORD: "{{ .Values.keycloak.master.password }}"
CLIENT_AUTHORITY_URL: "{{- include "tls.gateway.url" . }}"
CLIENT_CERTIFICATE_PASSWORD: "{{ .Values.global.keystore.password }}"
\ No newline at end of file
......@@ -118,3 +118,8 @@ redis:
port: "6379"
username: "default"
password: "admin"
keycloak:
master:
user: "user"
password: "admin"
\ No newline at end of file
spring:
data:
redis:
......@@ -20,11 +19,12 @@ logging:
keycloak:
url: http://localhost:9010/auth
master:
user: user
password: admin
app:
realm: authority
client-id: frontend-cli
master:
user: user
client:
certificate-password: authority
authority:
......
......@@ -34,8 +34,8 @@ keycloak:
master:
realm: master
client-id: admin-cli
user: user
password: admin
user: [KEYCLOAK_USER]
password: [KEYCLOAK_PASSWORD]
app:
realm: [KEYCLOAK_APP_REALM]
client-id: frontend-cli
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment