Closed
Description
Describe the bug
az command this line from the install.md
az aks get-versions --location $location --query "orchestrators[-1].orchestratorVersion" -o tsv
To Reproduce
- Go to cloudshell
- paste the command
Notive the variable
location="westus2" kubernetesVersion=$(az aks get-versions --location $location --query "orchestrators[-1].orchestratorVersion" -o tsv) echo $kubernetesVersion
$kubernetesVersion
is empty.
Solution
Replace --query
parameter like so "values[?isDefault==`true`].version | [0]"
kubernetesVersion=$(az aks get-versions --location $location --query "values[?isDefault==\`true\`].version | [0]" -o tsv)
Metadata
Metadata
Assignees
Labels
No labels