From 7e89d05b19a85d8749a47ca2b7ecf040cd32e58b Mon Sep 17 00:00:00 2001 From: Chen Sun Date: Wed, 5 Jul 2023 15:28:51 -0700 Subject: [PATCH] test: Use GKE stable release channel to unblock presubmit tests. Fixes #9704. Part of #9706. (#9705) * Use GKE stable release channel to unblock presubmit tests * update TODO comment --- test/deploy-cluster.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/test/deploy-cluster.sh b/test/deploy-cluster.sh index 4949b0e455..50cbdab53e 100755 --- a/test/deploy-cluster.sh +++ b/test/deploy-cluster.sh @@ -87,9 +87,8 @@ else SCOPE_ARG="--scopes=storage-rw,cloud-platform" fi # Use regular release channel to keep up with newly created clusters in Google Cloud Marketplace. - # gcloud container clusters create ${TEST_CLUSTER} --release-channel regular ${SCOPE_ARG} ${NODE_POOL_CONFIG_ARG} ${WI_ARG} - # Temporarily use cos as image type until docker dependencies gets removed. reference: https://github.com/kubeflow/pipelines/issues/6696 - gcloud container clusters create ${TEST_CLUSTER} --image-type cos_containerd --release-channel regular ${SCOPE_ARG} ${NODE_POOL_CONFIG_ARG} ${WI_ARG} + # TODO(#9706): Switch back to regular channel once we stop building test images via dind. + gcloud container clusters create ${TEST_CLUSTER} --release-channel stable ${SCOPE_ARG} ${NODE_POOL_CONFIG_ARG} ${WI_ARG} fi gcloud container clusters get-credentials ${TEST_CLUSTER}