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

chore(deps): bump-notifications-image-5646c01 #6259

Merged
merged 2 commits into from
Apr 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
1 change: 1 addition & 0 deletions charts/galoy/templates/galoy-secrets.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -237,6 +237,7 @@ metadata:
type: Opaque
data:
pg-con: {{ .Values.secrets.notificationsPgCon | toString | b64enc }}
pg-read-con: {{ .Values.secrets.notificationsPgCon | toString | b64enc }}
smtp-password: {{ .Values.secrets.notificationsSmtpPassword | toString | b64enc }}
firebase-service-account: {{ .Values.secrets.firebaseServiceAccountJson | toString | b64enc }}
---
Expand Down
5 changes: 5 additions & 0 deletions charts/galoy/templates/notifications-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@ spec:
secretKeyRef:
name: {{ template "galoy.notifications.fullname" . }}
key: pg-con
- name: PG_READ_CON
valueFrom:
secretKeyRef:
name: {{ template "galoy.notifications.fullname" . }}
key: pg-read-con
- name: EMAIL_PASSWORD
valueFrom:
secretKeyRef:
Expand Down
2 changes: 1 addition & 1 deletion charts/galoy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ galoy:
repository: us.gcr.io/galoy-org/galoy-notifications
## Digest of the image
##
digest: "sha256:08918788b15db740bde95e086899d1eb20629654eca49d2c28a46f4e822e9c44" # METADATA:: repository=https://github.com/GaloyMoney/galoy;commit_ref=a0b9ee2;app=notifications;monorepo_subdir=core/notifications;
digest: "sha256:25b0e7aa924de385eff201b1b2daa6843d73311d883abdec8703307903597dfd" # METADATA:: repository=https://github.com/GaloyMoney/galoy;commit_ref=5646c01;app=notifications;monorepo_subdir=core/notifications;
## Galoy Application MongoDB Migration Image details
##
mongodbMigrate:
Expand Down
1 change: 1 addition & 0 deletions ci/testflight/galoy/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -339,6 +339,7 @@ resource "kubernetes_secret" "notifications" {
}
data = {
pg-con : "postgres://notifications:notifications@notifications-postgresql:5432/notifications"
pg-read-con : "postgres://notifications:notifications@notifications-postgresql:5432/notifications"
smtp-password : "dummy"
firebase-service-account = file("${path.module}/fake-firebase-service-account.json")
}
Expand Down
Loading