Skip to content

Commit

Permalink
⬇️ Scale down
Browse files Browse the repository at this point in the history
  • Loading branch information
joyliu-q committed Jul 8, 2023
1 parent aa47980 commit e089828
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 @@ -17,7 +17,7 @@ export class MyChart extends PennLabsChart {
deployment: {
image: backendImage,
cmd: ['/usr/local/bin/asgi-run'],
replicas: 2,
replicas: 1,
secret,
env: [
{ name: 'REDIS_URL', value: 'redis://office-hours-queue-redis:6379' },
Expand All @@ -30,7 +30,7 @@ export class MyChart extends PennLabsChart {
new DjangoApplication(this, 'django-wsgi', {
deployment: {
image: backendImage,
replicas: 2,
replicas: 1,
secret,
env: [
{ name: 'REDIS_URL', value: 'redis://office-hours-queue-redis:6379' },
Expand All @@ -43,7 +43,7 @@ export class MyChart extends PennLabsChart {
new ReactApplication(this, 'react', {
deployment: {
image: frontendImage,
replicas: 2,
replicas: 1,
},
domain: { host: domain, paths: ['/'] },
port: 80,
Expand Down

1 comment on commit e089828

@vercel
Copy link

@vercel vercel bot commented on e089828 Jul 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

office-hours-queue – ./frontend

office-hours-queue-git-master-ohq.vercel.app
office-hours-queue-ohq.vercel.app
office-hours-queue.vercel.app

Please sign in to comment.