Skip to content

Commit

Permalink
Downsize loaders to 0.5 vCPU, 1 GB RAM
Browse files Browse the repository at this point in the history
We've long known that the loaders are probably overprovisioned. This downsizes them by 50%. Partially covers #303.
  • Loading branch information
Mr0grog committed Jul 13, 2022
1 parent b30972e commit 2fb701d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions terraform/modules/loader/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ module "loader_task" {
name = var.name
image = var.loader_image
role = var.role
cpu = 1024
memory = 2048
cpu = 512
memory = 1024
port = 3000
command = concat(var.command, [var.loader_source])

Expand Down

0 comments on commit 2fb701d

Please sign in to comment.