From 1f34b8b36a34cac92dfe0140b6c05b2d10bec56b Mon Sep 17 00:00:00 2001 From: Joy Liu <34288846+joyliu-q@users.noreply.github.com> Date: Fri, 2 Feb 2024 16:51:28 -0500 Subject: [PATCH] :arrow_up: Scale Up --- k8s/main.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/k8s/main.ts b/k8s/main.ts index 24e8cfa9c..d9697ece4 100644 --- a/k8s/main.ts +++ b/k8s/main.ts @@ -31,7 +31,7 @@ export class MyChart extends PennLabsChart { new DjangoApplication(this, 'django-wsgi', { deployment: { image: backendImage, - replicas: 7, + replicas: 9, secret: clubsSecret, env: [ { name: 'REDIS_HOST', value: 'penn-clubs-redis' }, @@ -60,7 +60,7 @@ export class MyChart extends PennLabsChart { new ReactApplication(this, 'react', { deployment: { image: frontendImage, - replicas: 3, + replicas: 5, }, domain: { host: clubsDomain, paths: ['/'] }, port: 80,