Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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