There was an error while loading. Please reload this page.
1 parent 2552fb4 commit 70a4fb5Copy full SHA for 70a4fb5
hack/aks/Makefile
@@ -45,8 +45,10 @@ azlogin: ## Login and set account to $SUB
45
@$(AZCLI) account set -s $(SUB)
46
47
azcfg: ## Set the $AZCLI to use aks-preview
48
-@$(AZCLI) extension add --name aks-preview --yes
49
-@$(AZCLI) extension update --name aks-preview
+## Remove the extension if it exists so we can install the set version
+@$(AZCLI) extension remove --name aks-preview || true
50
+@$(AZCLI) extension add --name aks-preview --version 14.0.0b3 --yes
51
+## @$(AZCLI) extension update --name aks-preview
52
53
ip:
54
$(AZCLI) network public-ip create --name $(IP_PREFIX)-$(CLUSTER)-$(IPVERSION) \
0 commit comments