-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: refactor helm chart for applying in gold (#109)
* feat: refactor helm chart for applying in gold * feat: use official spilo image * fix: pre-commit issue with end of line
- Loading branch information
1 parent
7deb8d5
commit 87afec6
Showing
13 changed files
with
104 additions
and
27 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
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 |
---|---|---|
|
@@ -2,4 +2,4 @@ nodejs 16.14.0 | |
yarn 1.22.4 | ||
python 3.11.0 | ||
postgres 14.1 | ||
helm 3.2.4 | ||
helm 3.10.2 |
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
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
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
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
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
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
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
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
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,33 @@ | ||
image: | ||
tag: dev | ||
|
||
route: | ||
host: realm-registry-sandbox.apps.gold.devops.gov.bc.ca | ||
|
||
sso: | ||
url: https://dev.loginproxy.gov.bc.ca/auth/realms/standard | ||
redirectUri: http://realm-registry-sandbox.apps.gold.devops.gov.bc.ca/oidc/keycloak | ||
logoutRedirectUri: http://realm-registry-sandbox.apps.gold.devops.gov.bc.ca | ||
|
||
env: | ||
APP_ENV: 'development' | ||
SECURE_HEADERS: 'true' | ||
IDIR_JWKS_URI: https://dev.loginproxy.gov.bc.ca/auth/realms/standard/protocol/openid-connect/certs | ||
IDIR_ISSUER: https://dev.loginproxy.gov.bc.ca/auth/realms/standard | ||
IDIR_AUDIENCE: css-app-in-gold-4128 | ||
CHES_API_ENDPOINT: https://ches.api.gov.bc.ca/api/v1/email | ||
|
||
vault: | ||
vaultSecretEngine: c6af30-nonprod | ||
postgresSecret: sandbox-realm-registry-patroni-appusers | ||
realmRegistrySecret: sandbox-realm-registry | ||
serviceAccountName: c6af30-vault | ||
|
||
patroni: | ||
image: | ||
repository: registry.opensource.zalan.do/acid/spilo-14 | ||
pullPolicy: Always | ||
tag: 2.1-p5 | ||
|
||
walG: | ||
enabled: false |
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,37 @@ | ||
image: | ||
tag: main | ||
|
||
route: | ||
host: realm-registry.apps.gold.devops.gov.bc.ca | ||
|
||
sso: | ||
url: https://loginproxy.gov.bc.ca/auth/realms/standard | ||
redirectUri: http://realm-registry.apps.gold.devops.gov.bc.ca/oidc/keycloak | ||
logoutRedirectUri: http://realm-registry.apps.gold.devops.gov.bc.ca | ||
|
||
env: | ||
APP_ENV: 'production' | ||
SECURE_HEADERS: 'true' | ||
IDIR_JWKS_URI: https://loginproxy.gov.bc.ca/auth/realms/standard/protocol/openid-connect/certs | ||
IDIR_ISSUER: https://loginproxy.gov.bc.ca/auth/realms/standard | ||
IDIR_AUDIENCE: css-app-in-gold-4128 | ||
CHES_API_ENDPOINT: https://ches.api.gov.bc.ca/api/v1/email | ||
|
||
vault: | ||
vaultSecretEngine: c6af30-prod | ||
postgresSecret: prod-realm-registry-patroni-appusers | ||
realmRegistrySecret: prod-realm-registry | ||
serviceAccountName: c6af30-vault | ||
|
||
patroni: | ||
image: | ||
repository: registry.opensource.zalan.do/acid/spilo-14 | ||
pullPolicy: Always | ||
tag: 2.1-p5 | ||
|
||
walG: | ||
enabled: true | ||
scheduleCronJob: 00 01 * * * | ||
retainBackups: 7 | ||
pvc: | ||
size: 1Gi |
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 |
---|---|---|
|
@@ -77,7 +77,7 @@ patroni: | |
|
||
resources: {} | ||
persistentVolume: | ||
size: 10Gi | ||
size: 1Gi | ||
|
||
podDisruptionBudget: | ||
enabled: true |