From c39c6ff63c3a7cb3de00dc611a8caad6837aca33 Mon Sep 17 00:00:00 2001 From: Lidi Zheng Date: Tue, 31 Aug 2021 10:36:26 -0700 Subject: [PATCH] Change to a non-workload-identity GKE cluster (#8462) Part of grpc/grpc#27189 and b/198291728. By disabling the workload identity, we should be able to run tests faster and avoid future IAM policy size issue. Kokoro run: https://fusion2.corp.google.com/invocations/afb37d8a-0c11-43a5-ad55-f6ead4d680f7/targets --- buildscripts/kokoro/xds_url_map.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/buildscripts/kokoro/xds_url_map.sh b/buildscripts/kokoro/xds_url_map.sh index cbb1552835b..163985ac118 100755 --- a/buildscripts/kokoro/xds_url_map.sh +++ b/buildscripts/kokoro/xds_url_map.sh @@ -4,8 +4,8 @@ set -eo pipefail # Constants readonly GITHUB_REPOSITORY_NAME="grpc-java" # GKE Cluster -readonly GKE_CLUSTER_NAME="interop-test-psm-sec-v2-us-central1-a" -readonly GKE_CLUSTER_ZONE="us-central1-a" +readonly GKE_CLUSTER_NAME="interop-test-psm-basic" +readonly GKE_CLUSTER_ZONE="us-central1-c" ## xDS test client Docker images readonly CLIENT_IMAGE_NAME="gcr.io/grpc-testing/xds-interop/java-client" readonly FORCE_IMAGE_BUILD="${FORCE_IMAGE_BUILD:-0}"