We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
location="westus2" kubernetesVersion=$(az aks get-versions --location $location --query "orchestrators[-1].orchestratorVersion" -o tsv) echo $kubernetesVersion
$kubernetesVersion
Solution
Replace --queryparameter like so "values[?isDefault==`true`].version | [0]"
--query
kubernetesVersion=$(az aks get-versions --location $location --query "values[?isDefault==\`true\`].version | [0]" -o tsv)
The text was updated successfully, but these errors were encountered:
install guide is now updated with new steps.
Sorry, something went wrong.
akshaysngupta
Successfully merging a pull request may close this issue.
Describe the bug
az command this line from the install.md
To Reproduce
$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)
The text was updated successfully, but these errors were encountered: