Skip to content

Commit 3cf8552

Browse files
authored
Merge pull request #4057 from ameukam/oci-proxy-sandbox-extend-regions
oci-proxy: deploy to more GCP regions
2 parents e88117d + b83889e commit 3cf8552

File tree

2 files changed

+16
-0
lines changed

2 files changed

+16
-0
lines changed

infra/gcp/terraform/k8s-infra-oci-proxy/oci-proxy-sandbox.tf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -130,6 +130,7 @@ resource "google_cloud_run_service" "regions" {
130130
service_account_name = google_service_account.oci-proxy.email
131131
containers {
132132
image = local.image
133+
args = [ "-v3" ]
133134
}
134135
container_concurrency = 5
135136
// 30 seconds less than cloud scheduler maximum.

infra/gcp/terraform/k8s-infra-oci-proxy/variables.tf

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,22 @@ variable "tag" {
2222
variable "cloud_run_regions" {
2323
type = list(string)
2424
default = [
25+
# asia
26+
"asia-east1",
27+
"asia-northeast1",
28+
"asia-northeast2",
29+
# europe
30+
"europe-north1",
31+
"europe-southwest1",
32+
"europe-west1",
33+
"europe-west8",
34+
"europe-west9",
35+
# us
2536
"us-central1",
37+
"us-east1",
38+
"us-east4",
39+
"us-east5",
40+
"us-south1",
2641
"us-west1"
2742
]
2843
}

0 commit comments

Comments
 (0)