Skip to content

Commit

Permalink
default value to http://localhost:18080/auth/realms/camunda-platform …
Browse files Browse the repository at this point in the history
…for IDENTITY_AUTH_PROVIDER_ISSUER_URL
piermotte committed Sep 28, 2022
1 parent b5a0833 commit 0146e4a
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -118,7 +118,7 @@ spec:
*/}}
value: {{ .Values.global.identity.keycloak.url | default "http://camunda-platform-tes:80/auth" | quote }}
- name: IDENTITY_AUTH_PROVIDER_ISSUER_URL
value: {{ .Values.global.identity.auth.publicIssuerUrl | default "http://localhost:18080/auth/realms/camunda-platform" | quote }}
value: {{ .Values.global.identity.auth.publicIssuerUrl | quote }}
- name: IDENTITY_AUTH_PROVIDER_BACKEND_URL
value: {{ .Values.global.identity.auth.providerBackendUrl | default "http://camunda-platform-tes:80/auth/realms/camunda-platform" | quote }}
- name: KEYCLOAK_SETUP_USER
2 changes: 1 addition & 1 deletion charts/camunda-platform/values.yaml
Original file line number Diff line number Diff line change
@@ -96,7 +96,7 @@ global:
# Identity.auth.publicIssuerUrl defines the token issuer (Keycloak) URL, where the services can request JWT tokens.
# Should be public accessible, per default we assume a port-forward to Keycloak (18080) is created before login.
# Can be overwritten if, ingress is in use and an external IP is available.
publicIssuerUrl: ""
publicIssuerUrl: "http://localhost:18080/auth/realms/camunda-platform"

providerBackendUrl: ""

0 comments on commit 0146e4a

Please sign in to comment.