From 44105f9813d96e05fca7024fe8b1700ca919aa5e Mon Sep 17 00:00:00 2001 From: Hulto <7121375+hulto@users.noreply.github.com> Date: Wed, 30 Oct 2024 20:02:59 -0400 Subject: [PATCH 1/2] GCP changed default max scale quota to 10 --- terraform/main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terraform/main.tf b/terraform/main.tf index 0ee9cfa21..a9ac6e378 100644 --- a/terraform/main.tf +++ b/terraform/main.tf @@ -151,7 +151,7 @@ resource "google_cloud_run_service" "tavern" { location = var.gcp_region traffic { - percent = 100 + percent = 10 latest_revision = true } From c9a0957021c5dcea042aba4a5384eee101df356d Mon Sep 17 00:00:00 2001 From: Hulto <7121375+hulto@users.noreply.github.com> Date: Wed, 30 Oct 2024 20:03:21 -0400 Subject: [PATCH 2/2] Same --- terraform/main.tf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/terraform/main.tf b/terraform/main.tf index a9ac6e378..803309a8c 100644 --- a/terraform/main.tf +++ b/terraform/main.tf @@ -81,7 +81,7 @@ variable "min_scale" { variable "max_scale" { type = string description = "Maximum number of CloudRun containers to run" - default = "100" + default = "10" } variable "enable_metrics" { type = bool @@ -151,7 +151,7 @@ resource "google_cloud_run_service" "tavern" { location = var.gcp_region traffic { - percent = 10 + percent = 100 latest_revision = true }