Skip to content

Commit

Permalink
⬆️ Scale up to 2
Browse files Browse the repository at this point in the history
  • Loading branch information
joyliu-q authored Oct 8, 2024
1 parent 0047dc1 commit db57a75
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions k8s/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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' },
Expand All @@ -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' },
Expand All @@ -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: ['/'] },
Expand Down

0 comments on commit db57a75

Please sign in to comment.