Skip to content
5 changes: 5 additions & 0 deletions helm/cosmo/charts/controlplane/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,11 @@ spec:
secretKeyRef:
name: {{ include "controlplane.secretName" . }}
key: jwtSessionSecret
- name: AUTH_SSO_COOKIE_DOMAIN
valueFrom:
secretKeyRef:
name: {{ include "controlplane.secretName" . }}
key: authSsoCookieDomain
- name: DB_URL
valueFrom:
secretKeyRef:
Expand Down
1 change: 1 addition & 0 deletions helm/cosmo/charts/controlplane/templates/secret.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ stringData:
clickhouseDsn: "{{ .Values.configuration.clickhouseDsn }}"
clickhouseMigrationDsn: "{{ .Values.configuration.clickhouseMigrationDsn }}"
jwtSessionSecret: "{{ .Values.global.controlplane.jwtSecret }}"
authSsoCookieDomain: "{{ .Values.configuration.authSsoCookieDomain }}"
keycloakAdminUser: "{{ .Values.global.keycloak.adminUser }}"
keycloakAdminPassword: "{{ .Values.global.keycloak.adminPassword }}"
webhookSecret: "{{ .Values.configuration.webhookSecret }}"
Expand Down
2 changes: 2 additions & 0 deletions helm/cosmo/charts/controlplane/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,8 @@ configuration:
openAiApiKey: ''
# -- URL of the CDN to use for serving router configs and persistent operations
cdnBaseUrl: 'http://cosmo-cdn:8787'
# -- The domain for the cookie used to store SSO authentication information
authSsoCookieDomain: '.wundergraph.local'

# -- Use this section to configure the smtp server.
smtp:
Expand Down
Loading