Skip to content

Commit

Permalink
add dsm url
Browse files Browse the repository at this point in the history
  • Loading branch information
connorlbark committed Dec 10, 2024
1 parent eb3f5e5 commit 0fa2cb6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions terraform/gcp/k8s/environments/dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ gcpRegion: us-central1
adminUrl: juniper-cmi.dev
deploymentZone: dev
replicas: 1
dsmUrl: https://dsm-dev.datadonationplatform.org/dsm
# "portals" adds certificates for each portal - both for the juniper-cmi.dev subdomains and the custom domain
portals:
- name: demo
Expand Down
1 change: 1 addition & 0 deletions terraform/gcp/k8s/environments/prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ gcpRegion: us-central1
adminUrl: juniper-cmi.org
deploymentZone: prod
replicas: 3
dsmUrl: https://dsm.datadonationplatform.org/dsm
# "portals" adds certificates for each portal - both for the admin subdomains and the custom domain
portals:
- name: demo
Expand Down
2 changes: 1 addition & 1 deletion terraform/gcp/k8s/templates/admin-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ spec:
- name: DSM_JWT_SIGNING_SECRET_SECRET_ID
value: dsm-secret
- name: DSM_ADDRESS
value: https://dsm-dev.datadonationplatform.org/dsm
value: {{ .Values.dsmUrl }}
- name: TDR_SA_CREDS_SECRET_ID
value: tdr-sa-creds
- name: TDR_EXPORT_STORAGE_ACCOUNT_KEY_SECRET_ID
Expand Down
2 changes: 1 addition & 1 deletion terraform/gcp/k8s/templates/participant-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ spec:
- name: DSM_JWT_SIGNING_SECRET_SECRET_ID
value: dsm-secret
- name: DSM_ADDRESS
value: https://dsm-dev.datadonationplatform.org/dsm
value: {{ .Values.dsmUrl }}
- name: TDR_SA_CREDS_SECRET_ID
value: tdr-sa-creds
- name: TDR_EXPORT_STORAGE_ACCOUNT_KEY_SECRET_ID
Expand Down
1 change: 1 addition & 0 deletions terraform/gcp/k8s/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,4 @@ b2c:
clientId: ""
changePasswordPolicyName: ""
enableMaintenanceMode: false
dsmUrl: https://dsm-dev.datadonationplatform.org/dsm

0 comments on commit 0fa2cb6

Please sign in to comment.