Skip to content

Commit db57a75

Browse files
authored
⬆️ Scale up to 2
1 parent 0047dc1 commit db57a75

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

k8s/main.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ export class MyChart extends PennLabsChart {
2323
deployment: {
2424
image: backendImage,
2525
cmd: ['/usr/local/bin/asgi-run'],
26-
replicas: 1,
26+
replicas: 2,
2727
secret,
2828
env: [
2929
{ name: 'REDIS_URL', value: 'redis://office-hours-queue-redis:6379' },
@@ -37,7 +37,7 @@ export class MyChart extends PennLabsChart {
3737
new DjangoApplication(this, 'django-wsgi', {
3838
deployment: {
3939
image: backendImage,
40-
replicas: 1,
40+
replicas: 2,
4141
secret,
4242
env: [
4343
{ name: 'REDIS_URL', value: 'redis://office-hours-queue-redis:6379' },
@@ -51,7 +51,7 @@ export class MyChart extends PennLabsChart {
5151
new ReactApplication(this, 'react', {
5252
deployment: {
5353
image: frontendImage,
54-
replicas: 1,
54+
replicas: 2,
5555
},
5656
ingressProps,
5757
domain: { host: domain, paths: ['/'] },

0 commit comments

Comments
 (0)