Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Set Identity JWT tokens vars for Operate, Optimize, and Tasklist #416

Merged
merged 1 commit into from Sep 27, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -41,6 +41,10 @@ spec:
{{- if .Values.global.identity.auth.enabled }}
- name: SPRING_PROFILES_ACTIVE
value: "identity-auth"
- name: SPRING_SECURITY_OAUTH2_RESOURCESERVER_JWT_ISSUERURI
value: {{ include "camundaPlatform.issuerBackendUrl" . | quote }}
- name: SPRING_SECURITY_OAUTH2_RESOURCESERVER_JWT_JWKSETURI
value: {{ printf "%s%s" (include "camundaPlatform.issuerBackendUrl" .) "/protocol/openid-connect/certs" | quote }}
- name: CAMUNDA_OPERATE_IDENTITY_ISSUER_URL
value: {{ .Values.global.identity.auth.publicIssuerUrl | quote }}
- name: CAMUNDA_OPERATE_IDENTITY_ISSUER_BACKEND_URL
Expand Down
Expand Up @@ -75,6 +75,10 @@ spec:
{{- end }}
- name: CAMUNDA_OPTIMIZE_IDENTITY_AUDIENCE
value: "optimize-api"
- name: CAMUNDA_OPTIMIZE_API_AUDIENCE
value: "optimize-api"
- name: CAMUNDA_OPTIMIZE_API_JWTSETURI
value: {{ printf "%s%s" (include "camundaPlatform.issuerBackendUrl" .) "/protocol/openid-connect/certs" | quote }}
{{- end }}
- name: CAMUNDA_OPTIMIZE_SECURITY_AUTH_COOKIE_SAME_SITE_ENABLED
value: "false"
Expand Down
Expand Up @@ -42,6 +42,10 @@ spec:
{{- if .Values.global.identity.auth.enabled }}
- name: SPRING_PROFILES_ACTIVE
value: "identity-auth"
- name: SPRING_SECURITY_OAUTH2_RESOURCESERVER_JWT_ISSUERURI
value: {{ include "camundaPlatform.issuerBackendUrl" . | quote }}
- name: SPRING_SECURITY_OAUTH2_RESOURCESERVER_JWT_JWKSETURI
value: {{ printf "%s%s" (include "camundaPlatform.issuerBackendUrl" .) "/protocol/openid-connect/certs" | quote }}
- name: CAMUNDA_TASKLIST_IDENTITY_ISSUER_URL
value: {{ .Values.global.identity.auth.publicIssuerUrl | quote }}
- name: CAMUNDA_TASKLIST_IDENTITY_ISSUER_BACKEND_URL
Expand Down
Expand Up @@ -44,6 +44,10 @@ spec:
env:
- name: SPRING_PROFILES_ACTIVE
value: "identity-auth"
- name: SPRING_SECURITY_OAUTH2_RESOURCESERVER_JWT_ISSUERURI
value: "http://camunda-platform-tes:80/auth/realms/camunda-platform"
- name: SPRING_SECURITY_OAUTH2_RESOURCESERVER_JWT_JWKSETURI
value: "http://camunda-platform-tes:80/auth/realms/camunda-platform/protocol/openid-connect/certs"
- name: CAMUNDA_OPERATE_IDENTITY_ISSUER_URL
value: "http://localhost:18080/auth/realms/camunda-platform"
- name: CAMUNDA_OPERATE_IDENTITY_ISSUER_BACKEND_URL
Expand Down
Expand Up @@ -65,6 +65,10 @@ spec:
key: optimize-secret
- name: CAMUNDA_OPTIMIZE_IDENTITY_AUDIENCE
value: "optimize-api"
- name: CAMUNDA_OPTIMIZE_API_AUDIENCE
value: "optimize-api"
- name: CAMUNDA_OPTIMIZE_API_JWTSETURI
value: "http://camunda-platform-tes:80/auth/realms/camunda-platform/protocol/openid-connect/certs"
- name: CAMUNDA_OPTIMIZE_SECURITY_AUTH_COOKIE_SAME_SITE_ENABLED
value: "false"
- name: CAMUNDA_OPTIMIZE_UI_LOGOUT_HIDDEN
Expand Down
Expand Up @@ -44,6 +44,10 @@ spec:
env:
- name: SPRING_PROFILES_ACTIVE
value: "identity-auth"
- name: SPRING_SECURITY_OAUTH2_RESOURCESERVER_JWT_ISSUERURI
value: "http://camunda-platform-tes:80/auth/realms/camunda-platform"
- name: SPRING_SECURITY_OAUTH2_RESOURCESERVER_JWT_JWKSETURI
value: "http://camunda-platform-tes:80/auth/realms/camunda-platform/protocol/openid-connect/certs"
- name: CAMUNDA_TASKLIST_IDENTITY_ISSUER_URL
value: "http://localhost:18080/auth/realms/camunda-platform"
- name: CAMUNDA_TASKLIST_IDENTITY_ISSUER_BACKEND_URL
Expand Down