From 9ec11564a325e03f2523249038233354535ffa4c Mon Sep 17 00:00:00 2001 From: Anthony Li Date: Fri, 31 Jan 2025 23:07:05 -0500 Subject: [PATCH] Scale up (2025 Spring Edition) --- k8s/main.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/k8s/main.ts b/k8s/main.ts index 0cc668fa9..95c103970 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: 2, + 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: 2, + replicas: 5, }, domain: { host: clubsDomain, paths: ['/'] }, port: 80,