We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22f2c3a commit 37183b8Copy full SHA for 37183b8
1 file changed
infra/feed-api/main.tf
@@ -69,6 +69,10 @@ resource "google_cloud_run_v2_service" "mobility-feed-api" {
69
location = var.gcp_region
70
ingress = "INGRESS_TRAFFIC_INTERNAL_LOAD_BALANCER"
71
72
+ scaling {
73
+ max_instance_count = 50
74
+ }
75
+
76
template {
77
service_account = google_service_account.containers_service_account.email
78
vpc_access {
@@ -93,7 +97,7 @@ resource "google_cloud_run_v2_service" "mobility-feed-api" {
93
97
resources {
94
98
limits = {
95
99
cpu = "1"
96
- memory = "2Gi"
100
+ memory = "4Gi"
101
}
102
103
0 commit comments