diff --git a/docs/deployment/public/aks.md b/docs/deployment/public/aks.md index a4f32c7f..1601f126 100644 --- a/docs/deployment/public/aks.md +++ b/docs/deployment/public/aks.md @@ -34,6 +34,38 @@ az aks create --resource-group --name \ The `--enable-addons monitoring` flag in the command above enables Azure Monitor for log aggregation which can incur additional charges. You can optionally remove this flag and add `--enable-efk-logging` to `opctl` command below. ::: +:::note +You can specify the version of the cluster. +Get a list of versions by running: +```shell script +az aks get-versions --location eastus --output table +``` +Example output +```text +KubernetesVersion Upgrades +------------------- ------------------------------------------------- +1.18.2(preview) None available +1.18.1(preview) 1.18.2(preview) +1.17.5(preview) 1.18.1(preview), 1.18.2(preview) +1.17.4(preview) 1.17.5(preview), 1.18.1(preview), 1.18.2(preview) +1.16.9 1.17.4(preview), 1.17.5(preview) +1.16.8 1.16.9, 1.17.4(preview), 1.17.5(preview) +1.15.11 1.16.8, 1.16.9 +1.15.10 1.15.11, 1.16.8, 1.16.9 +1.14.8 1.15.10, 1.15.11 +1.14.7 1.14.8, 1.15.10, 1.15.11 +``` + +Add the flag to the above command: +```shell script +az aks create --resource-group --name \ + --node-count 2 \ + --kubernetes-version 1.16.9 \ + ... +``` + +::: + You can then get access credentials by running: ```