From 5a5369bef26bb2f993feba7ffdb790a6da2aae9c Mon Sep 17 00:00:00 2001 From: Shalin Patel Date: Thu, 7 Nov 2024 15:17:19 -0800 Subject: [PATCH] build: set image storage location for gcp --- magefile.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/magefile.go b/magefile.go index 19b9dfbd0..99a44c4df 100644 --- a/magefile.go +++ b/magefile.go @@ -182,7 +182,7 @@ func RunE2e(buildOS, buildConfig, buildInfra string, dryRun bool) error { } // extra args for gcp if buildInfra == gcp { - args = append(args, "--project-id=eng-ksphere-platform-e2e", "--network=kib-ssh-network") + args = append(args, "--project-id=ncn-ci-workload", "--network=kib-ssh-network", "--image-storage-locations=us-west1") } fmt.Printf("Running %s with args %v\n", wrapperCmd, args) return sh.RunV(wrapperCmd, args...)