Skip to content

Commit

Permalink
[Notifications] Add APNS and FCM Credentials (#331)
Browse files Browse the repository at this point in the history
* 🎨 Add iOS APNS Keys

* 🎉 Finalized paths and yay
  • Loading branch information
joyliu-q authored Nov 19, 2024
1 parent 73dc150 commit ccb5db2
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion k8s/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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' },
Expand All @@ -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',
}
]
},
Expand Down

0 comments on commit ccb5db2

Please sign in to comment.