Skip to content

Commit

Permalink
fix: identity base url not configured (#2028)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanlukas authored and aabouzaid committed Jun 28, 2024
1 parent 3c1a207 commit d3d0012
Show file tree
Hide file tree
Showing 8 changed files with 9 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ data:
identity:
clientId: {{ include "operate.authClientId" . | quote }}
audience: {{ include "operate.authAudience" . | quote }}
baseUrl: {{ include "camundaPlatform.identityURL" . | quote }}
{{- else }}
spring:
profiles:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,8 @@ data:
audience: {{ include "optimize.authAudience" . | quote }}
issuer: {{ include "camundaPlatform.authIssuerUrl" . | quote }}
issuerBackendUrl: {{ include "camundaPlatform.authIssuerBackendUrl" . | quote }}
baseUrl: {{ include "camundaPlatform.identityURL" . | quote }}
{{- end }}

{{- range $key, $val := .Values.optimize.extraConfiguration }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ data:
identity:
clientId: {{ include "tasklist.authClientId" . | quote }}
audience: {{ include "tasklist.authAudience" . | quote }}
baseUrl: {{ include "camundaPlatform.identityURL" . | quote }}
{{- else }}
spring:
profiles:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,6 @@ data:
type: {{ include "camundaPlatform.authType" . | quote }}
issuerBackendUrl: {{ include "camundaPlatform.authIssuerBackendUrl" . | quote }}
audience: {{ include "zeebe.audience" . | quote }}
{{- end }}
{{- if .Values.global.multitenancy.enabled }}
baseUrl: {{ include "camundaPlatform.identityURL" . | quote }}
{{- end }}
{{- end }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ data:
identity:
clientId: "operate"
audience: "operate-api"
baseUrl: "http://camunda-platform-test-identity:80"
# Operate configuration file
camunda.operate:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ data:
identity:
clientId: "tasklist"
audience: "tasklist-api"
baseUrl: "http://camunda-platform-test-identity:80"
# Tasklist configuration file
camunda.tasklist:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ data:
type: "KEYCLOAK"
issuerBackendUrl: "http://camunda-platform-test-keycloak:80/auth/realms/camunda-platform"
audience: "zeebe-api"
baseUrl: "http://camunda-platform-test-identity:80"
zeebe:
gateway:
security:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ data:
type: "KEYCLOAK"
issuerBackendUrl: "http://camunda-platform-test-keycloak:80/auth/realms/camunda-platform"
audience: "zeebe-api"
baseUrl: "http://camunda-platform-test-identity:80"
zeebe:
gateway:
security:
Expand Down

0 comments on commit d3d0012

Please sign in to comment.