From 6a36a10b7a06ccc25194acc7438d346164101771 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Bombo?= Date: Mon, 13 Jul 2026 12:25:15 -0500 Subject: [PATCH] ci: pin aks-preview version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The latest version is failing to install with the below error, so pin to the last known good version. WARNING: No stable version of 'aks-preview' to install. Preview versions allowed. ERROR: The checksum of the extension does not match the expected value. Use --debug for more information. Evidence this version fixes the issue locally: $ az extension list-versions --name aks-preview --output table | tail -2 True False True (upgrade available) aks-preview True 21.0.0b8 True False False aks-preview True 21.0.0b9 (max compatible version) $ az extension add --name aks-preview --version 21.0.0b9 No stable version of 'aks-preview' to install. Preview versions allowed. The checksum of the extension does not match the expected value. Use --debug for more information. $ az extension remove --name aks-preview The extension aks-preview is not installed. Please install the extension via `az extension add -n aks-preview`. $ az extension add --name aks-preview --version 21.0.0b8 No stable version of 'aks-preview' to install. Preview versions allowed. The installed extension 'aks-preview' is in preview. $ Signed-off-by: Aurélien Bombo --- tests/gha-run-k8s-common.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/gha-run-k8s-common.sh b/tests/gha-run-k8s-common.sh index e0554a2dd0..7a59d0187e 100644 --- a/tests/gha-run-k8s-common.sh +++ b/tests/gha-run-k8s-common.sh @@ -150,7 +150,7 @@ function create_cluster() { -n "${rg}" # Required by e.g. AKS App Routing for KBS installation. - az extension add --name aks-preview + az extension add --name aks-preview --version 21.0.0b8 # Create the cluster. aks_create=(az aks create