Merge pull request #13261 from jiahuif-forks/fix/service-account-workaround

service account workaround for gce
This commit is contained in:
Kubernetes Prow Robot 2022-02-15 13:23:19 -08:00 committed by GitHub
commit a3cf82efb1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -24,7 +24,11 @@ OVERRIDES=("--node-count=1" "--master-count=3")
case "${CLOUD_PROVIDER}" in
gce)
export KOPS_FEATURE_FLAGS=AlphaAllowGCE,SpecOverrideFlag
OVERRIDES+=("--zones=us-central1-a,us-central1-b,us-central1-c" "--master-zones=us-central1-a,us-central1-b,us-central1-c")
OVERRIDES+=(
"--zones=us-central1-a,us-central1-b,us-central1-c"
"--master-zones=us-central1-a,us-central1-b,us-central1-c"
"--gce-service-account=default" # see test-infra#24749
)
;;
*) ;;