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

use new key for db url #584

Merged
merged 3 commits into from
Oct 24, 2024
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion deploy/prod/common-values-upgrade-server-left.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ env:
- name: SMPC__DATABASE__URL
valueFrom:
secretKeyRef:
key: DATABASE_URL
key: DATABASE_AURORA_URL
name: application
- name: RUST_LOG
value: info
Expand Down
2 changes: 1 addition & 1 deletion deploy/prod/common-values-upgrade-server-right.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ env:
- name: SMPC__DATABASE__URL
valueFrom:
secretKeyRef:
key: DATABASE_URL
key: DATABASE_AURORA_URL
name: application
- name: RUST_LOG
value: info
Expand Down
4 changes: 2 additions & 2 deletions deploy/prod/smpcv2-0-prod/values-iris-mpc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ env:
- name: SMPC__DATABASE__URL
valueFrom:
secretKeyRef:
key: DATABASE_URL
key: DATABASE_AURORA_URL
name: application

- name: SMPC__DATABASE__MIGRATE
Expand All @@ -30,7 +30,7 @@ env:
value: "true"

- name: SMPC__DATABASE__LOAD_PARALLELISM
value: "2"
value: "80"

- name: SMPC__AWS__REGION
value: "eu-north-1"
Expand Down
4 changes: 2 additions & 2 deletions deploy/prod/smpcv2-2-prod/values-iris-mpc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ env:
- name: SMPC__DATABASE__URL
valueFrom:
secretKeyRef:
key: DATABASE_URL
key: DATABASE_AURORA_URL
name: application

- name: SMPC__DATABASE__MIGRATE
Expand All @@ -30,7 +30,7 @@ env:
value: "true"

- name: SMPC__DATABASE__LOAD_PARALLELISM
value: "2"
value: "80"

- name: SMPC__AWS__REGION
value: "eu-north-1"
Expand Down
2 changes: 1 addition & 1 deletion deploy/stage/common-values-upgrade-server-left.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ env:
- name: SMPC__DATABASE__URL
valueFrom:
secretKeyRef:
key: DATABASE_URL
key: DATABASE_AURORA_URL
name: application
- name: RUST_LOG
value: info
Expand Down
2 changes: 1 addition & 1 deletion deploy/stage/common-values-upgrade-server-right.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ env:
- name: SMPC__DATABASE__URL
valueFrom:
secretKeyRef:
key: DATABASE_URL
key: DATABASE_AURORA_URL
name: application
- name: RUST_LOG
value: info
Expand Down
2 changes: 1 addition & 1 deletion deploy/stage/smpcv2-0-stage/values-iris-mpc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ env:
- name: SMPC__DATABASE__URL
valueFrom:
secretKeyRef:
key: DATABASE_URL
key: DATABASE_AURORA_URL
name: application

- name: SMPC__DATABASE__MIGRATE
Expand Down
2 changes: 1 addition & 1 deletion deploy/stage/smpcv2-1-stage/values-iris-mpc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ env:
- name: SMPC__DATABASE__URL
valueFrom:
secretKeyRef:
key: DATABASE_URL
key: DATABASE_AURORA_URL
name: application

- name: SMPC__DATABASE__MIGRATE
Expand Down
2 changes: 1 addition & 1 deletion deploy/stage/smpcv2-2-stage/values-iris-mpc.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ env:
- name: SMPC__DATABASE__URL
valueFrom:
secretKeyRef:
key: DATABASE_URL
key: DATABASE_AURORA_URL
name: application

- name: SMPC__DATABASE__MIGRATE
Expand Down
Loading