Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions docs/deployment/public/aks.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,38 @@ az aks create --resource-group <resource-group> --name <cluster-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 <resource-group> --name <cluster-name> \
--node-count 2 \
--kubernetes-version 1.16.9 \
...
```

:::

You can then get access credentials by running:

```
Expand Down