application-gateway-kubernetes-ingress icon indicating copy to clipboard operation
application-gateway-kubernetes-ingress copied to clipboard

az cli command from install guide evaluates with empty value

Open effelow opened this issue 1 year ago • 0 comments

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

  1. Go to cloudshell
  2. paste the command
    location="westus2"
    kubernetesVersion=$(az aks get-versions --location $location --query "orchestrators[-1].orchestratorVersion" -o tsv)
    echo $kubernetesVersion
    
    
    Notive the variable $kubernetesVersion is empty.

Solution

Replace --queryparameter like so "values[?isDefault==`true`].version | [0]"

kubernetesVersion=$(az aks get-versions --location $location --query "values[?isDefault==\`true\`].version | [0]" -o tsv)

effelow avatar Feb 06 '24 15:02 effelow