From 0ace31f041ece7b7d62f7c52a47f1b7ae251ae41 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Bombo?= Date: Thu, 1 Feb 2024 19:22:42 +0000 Subject: [PATCH] ci: aks: switch from eastus2 to eastus region MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This addresses an internal AKS issue that intermittently prevents clusters from getting created. The fix has been rolled out to eastus but not yet eastus2, so we unblock the CI by switching. No downsides in general. This supersedes #8990. Fixes: #8989 Signed-off-by: Aurélien Bombo --- tests/gha-run-k8s-common.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/gha-run-k8s-common.sh b/tests/gha-run-k8s-common.sh index 475ab41583..cd9501b498 100644 --- a/tests/gha-run-k8s-common.sh +++ b/tests/gha-run-k8s-common.sh @@ -66,12 +66,12 @@ function create_cluster() { local rg="$(_print_rg_name ${test_type})" az group create \ - -l eastus2 \ + -l eastus \ -n "${rg}" az aks create \ -g "${rg}" \ - --node-resource-group "node-${rg}" \ + --node-resource-group "node-${rg}" \ -n "$(_print_cluster_name ${test_type})" \ -s "$(_print_instance_type)" \ --node-count 1 \