-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
* Add domain-cc refs for alembic credentials * Create a new tpl in the domain-cc helm for housing db credentials
- Loading branch information
1 parent
8700e14
commit edc470c
Showing
3 changed files
with
19 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,3 +24,4 @@ global: | |
targetPort: 5432 | ||
databaseName: vro | ||
schemaName: claims | ||
domainCcSchemaName: domain-cc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{{/* | ||
For Alembic to connect to Postgres Domain-cc DB schema | ||
*/}} | ||
{{- define "domainCc.alembic.envVars" -}} | ||
- name: DOMAIN_CC_USER | ||
valueFrom: | ||
secretKeyRef: | ||
name: domain-cc-db | ||
key: DOMAIN_CC_USER | ||
- name: DOMAIN_CC_PW | ||
valueFrom: | ||
secretKeyRef: | ||
name: domain-cc-db | ||
key: DOMAIN_CC_PW | ||
- name: ALEMBIC_SCHEMA | ||
value: {{ .Values.global.service.db.domainCcSchemaName }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters