Skip to content

Commit f035df5

Browse files
committed
enable artifact registry for scale e2e projects
1 parent 6e38cc1 commit f035df5

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

infra/gcp/terraform/boskos/main.tf

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,16 @@ resource "google_folder" "boskos" {
2020
}
2121

2222
locals {
23-
boskos_projects = [
23+
boskos_e2e_projects = [
2424
for i in range("001", "160") : format("k8s-infra-e2e-boskos-%03d", i)
2525
]
26+
boskos_scale_e2e_projects = [
27+
for i in range("001", "30") : format("k8s-infra-e2e-boskos-scale-%02d", i)
28+
]
29+
boskos_projects = concat(
30+
local.boskos_e2e_projects,
31+
local.boskos_scale_e2e_projects,
32+
)
2633
}
2734

2835
module "project" {

0 commit comments

Comments
 (0)