Updating AKS Cluster creation command (#4632)

* updating aks cluster creation command

Signed-off-by: Fernando Rocha <fernando@diagrid.io>

* adding missing space

Signed-off-by: Fernando Rocha <fernando@diagrid.io>

---------

Signed-off-by: Fernando Rocha <fernando@diagrid.io>
This commit is contained in:
Fernando Rocha 2025-04-28 10:25:57 -07:00 committed by GitHub
parent a0027cb42b
commit 41ddb27be6
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -39,7 +39,7 @@ This guide walks you through installing an Azure Kubernetes Service (AKS) cluste
1. Create an AKS cluster. To use a specific version of Kubernetes, use `--kubernetes-version` (1.13.x or newer version required). 1. Create an AKS cluster. To use a specific version of Kubernetes, use `--kubernetes-version` (1.13.x or newer version required).
```bash ```bash
az aks create --resource-group [your_resource_group] --name [your_aks_cluster_name] --node-count 2 --enable-addons http_application_routing --generate-ssh-keys az aks create --resource-group [your_resource_group] --name [your_aks_cluster_name] --location [region] --node-count 2 --enable-app-routing --generate-ssh-keys
``` ```
1. Get the access credentials for the AKS cluster. 1. Get the access credentials for the AKS cluster.