From ccb5db2e0ea33dd9336d42d630520b330f15ad68 Mon Sep 17 00:00:00 2001 From: Qijia Liu <34288846+joyliu-q@users.noreply.github.com> Date: Tue, 19 Nov 2024 00:20:55 -0500 Subject: [PATCH] [Notifications] Add APNS and FCM Credentials (#331) * :art: Add iOS APNS Keys * :tada: Finalized paths and yay --- k8s/main.ts | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/k8s/main.ts b/k8s/main.ts index 55993bac..f4f6f929 100644 --- a/k8s/main.ts +++ b/k8s/main.ts @@ -30,7 +30,7 @@ export class MyChart extends PennLabsChart { name: "penn-mobile", subPath: "ios-key", mountPath: "/app/ios_key.p8", - } + }, ], env: [ { name: 'REDIS_URL', value: 'redis://penn-mobile-redis:6379' }, @@ -50,6 +50,18 @@ export class MyChart extends PennLabsChart { name: "penn-mobile", subPath: "ios-key", mountPath: "/app/ios_key.p8", + }, + { + name: 'penn-mobile-apns-prod', + mountPath: '/app/secrets/notifications/ios/prod', + }, + { + name: 'penn-mobile-apns-dev', + mountPath: '/app/secrets/notifications/ios/dev', + }, + { + name: 'penn-mobile-fcm', + mountPath: '/app/secrets/notifications/android', } ] },