Skip to content

Commit

Permalink
fix: this container takes a long time to start. (#207)
Browse files Browse the repository at this point in the history
  • Loading branch information
jgadling authored Dec 5, 2023
1 parent f6ea1fe commit f81c2be
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
5 changes: 3 additions & 2 deletions frontend/.happy/terraform/envs/dev/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ module "stack" {
priority = 0
service_type = "EXTERNAL"
success_codes = "200-499"
memory = "1500Mi"
cpu = "1500m"
memory = "2000Mi"
cpu = "2000m"
initial_delay_seconds = 100
}
}
create_dashboard = false
Expand Down
5 changes: 3 additions & 2 deletions frontend/.happy/terraform/envs/prod/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,9 @@ module "stack" {
priority = 0
service_type = "EXTERNAL"
success_codes = "200-499"
memory = "1500Mi"
cpu = "1500m"
memory = "2000Mi"
cpu = "2000m"
initial_delay_seconds = 100
}
}
create_dashboard = false
Expand Down
5 changes: 3 additions & 2 deletions frontend/.happy/terraform/envs/staging/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,9 @@ module "stack" {
priority = 0
service_type = "EXTERNAL"
success_codes = "200-499"
memory = "1500Mi"
cpu = "1500m"
memory = "2000Mi"
cpu = "2000m"
initial_delay_seconds = 100
}
}
create_dashboard = false
Expand Down

0 comments on commit f81c2be

Please sign in to comment.