diff --git a/k8s/main.ts b/k8s/main.ts index a9439ad1..bbea54d4 100644 --- a/k8s/main.ts +++ b/k8s/main.ts @@ -23,7 +23,7 @@ export class MyChart extends PennLabsChart { deployment: { image: backendImage, cmd: ['/usr/local/bin/asgi-run'], - replicas: 1, + replicas: 2, secret, env: [ { name: 'REDIS_URL', value: 'redis://office-hours-queue-redis:6379' }, @@ -37,7 +37,7 @@ export class MyChart extends PennLabsChart { new DjangoApplication(this, 'django-wsgi', { deployment: { image: backendImage, - replicas: 1, + replicas: 2, secret, env: [ { name: 'REDIS_URL', value: 'redis://office-hours-queue-redis:6379' }, @@ -51,7 +51,7 @@ export class MyChart extends PennLabsChart { new ReactApplication(this, 'react', { deployment: { image: frontendImage, - replicas: 1, + replicas: 2, }, ingressProps, domain: { host: domain, paths: ['/'] },