Skip to content

Commit

Permalink
ci: pin aks-preview version to 0.5.87 (#954)
Browse files Browse the repository at this point in the history
Signed-off-by: Anish Ramasekar <anish.ramasekar@gmail.com>
  • Loading branch information
aramase committed Aug 9, 2022
1 parent 56289fa commit 7772b90
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .pipelines/templates/aks-setup.yaml
Expand Up @@ -72,8 +72,8 @@ steps:
if [[ "$(OS_TYPE)" == "windows" ]]; then
if [[ ${{ parameters.containerRuntime }} == "containerd" ]]; then
az extension add --name aks-preview
az extension update --name aks-preview
# pinning to 0.5.87 because of https://github.com/Azure/azure-cli/issues/23267
az extension add --name aks-preview --version 0.5.87
EXTRA_ARGS="--aks-custom-headers WindowsContainerRuntime=containerd"
fi
Expand All @@ -83,8 +83,8 @@ steps:
# add gpu node pool
if [[ ${{ parameters.testWithGPU }} == True ]]; then
echo "adding gpu node pool"
az extension add --name aks-preview
az extension update --name aks-preview
# pinning to 0.5.87 because of https://github.com/Azure/azure-cli/issues/23267
az extension add --name aks-preview --version 0.5.87
az aks nodepool add -g ${AZURE_CLUSTER_NAME} --cluster-name ${AZURE_CLUSTER_NAME} --name gpu --node-count $(AGENT_COUNT) --node-vm-size Standard_NC6 --aks-custom-headers UseGPUDedicatedVHD=true
fi
Expand Down

0 comments on commit 7772b90

Please sign in to comment.