Skip to content

Commit d30f130

Browse files
committed
[Dev Spaces] remove --disable-rbac param
1 parent bae6129 commit d30f130

9 files changed

+9
-9
lines changed

articles/dev-spaces/get-started-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ az group create --name MyResourceGroup --location <region>
5858
Create a Kubernetes cluster with the following command:
5959

6060
```cmd
61-
az aks create -g MyResourceGroup -n MyAKS --location <region> --disable-rbac --generate-ssh-keys
61+
az aks create -g MyResourceGroup -n MyAKS --location <region> --generate-ssh-keys
6262
```
6363

6464
It takes a few minutes to create the cluster.

articles/dev-spaces/get-started-netcore.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ az group create --name MyResourceGroup --location <region>
5555
Create a Kubernetes cluster with the following command:
5656

5757
```cmd
58-
az aks create -g MyResourceGroup -n MyAKS --location <region> --disable-rbac --generate-ssh-keys
58+
az aks create -g MyResourceGroup -n MyAKS --location <region> --generate-ssh-keys
5959
```
6060

6161
It takes a few minutes to create the cluster.

articles/dev-spaces/get-started-nodejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ az group create --name MyResourceGroup --location <region>
5555
Create a Kubernetes cluster with the following command:
5656

5757
```cmd
58-
az aks create -g MyResourceGroup -n MyAKS --location <region> --disable-rbac --generate-ssh-keys
58+
az aks create -g MyResourceGroup -n MyAKS --location <region> --generate-ssh-keys
5959
```
6060

6161
It takes a few minutes to create the cluster.

articles/dev-spaces/how-to/create-cluster-cloud-shell.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ az group create --name MyResourceGroup --location <region>
2121
Create a Kubernetes cluster with the following command:
2222

2323
```azurecli-interactive
24-
az aks create -g MyResourceGroup -n MyAKS --location <region> --disable-rbac --generate-ssh-keys
24+
az aks create -g MyResourceGroup -n MyAKS --location <region> --generate-ssh-keys
2525
```
2626

2727
It takes a few minutes to create the cluster. When complete, the output is shown in the JSON format. Look for `provisioningState` and verify it's `Succeeded`.

articles/dev-spaces/quickstart-cli.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ You need to create an AKS cluster in a [supported region][supported-regions]. Th
2424

2525
```cmd
2626
az group create --name MyResourceGroup --location eastus
27-
az aks create -g MyResourceGroup -n MyAKS --location eastus --disable-rbac --generate-ssh-keys
27+
az aks create -g MyResourceGroup -n MyAKS --location eastus --generate-ssh-keys
2828
```
2929

3030
## Enable Azure Dev Spaces on your AKS cluster

articles/dev-spaces/quickstart-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ You need to create an AKS cluster in a [supported region][supported-regions]. Th
2727

2828
```cmd
2929
az group create --name MyResourceGroup --location eastus
30-
az aks create -g MyResourceGroup -n MyAKS --location eastus --disable-rbac --generate-ssh-keys
30+
az aks create -g MyResourceGroup -n MyAKS --location eastus --generate-ssh-keys
3131
```
3232

3333
## Enable Azure Dev Spaces on your AKS cluster

articles/dev-spaces/quickstart-netcore.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ You need to create an AKS cluster in a [supported region][supported-regions]. Th
3333

3434
```cmd
3535
az group create --name MyResourceGroup --location eastus
36-
az aks create -g MyResourceGroup -n MyAKS --location eastus --disable-rbac --generate-ssh-keys
36+
az aks create -g MyResourceGroup -n MyAKS --location eastus --generate-ssh-keys
3737
```
3838

3939
## Enable Azure Dev Spaces on your AKS cluster

articles/dev-spaces/quickstart-nodejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ You need to create an AKS cluster in a [supported region][supported-regions]. Th
2626

2727
```cmd
2828
az group create --name MyResourceGroup --location eastus
29-
az aks create -g MyResourceGroup -n MyAKS --location eastus --disable-rbac --generate-ssh-keys
29+
az aks create -g MyResourceGroup -n MyAKS --location eastus --generate-ssh-keys
3030
```
3131

3232
## Enable Azure Dev Spaces on your AKS cluster

articles/dev-spaces/quickstart-team-development.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ You must create an AKS cluster in a [supported region][supported-regions]. The b
2929

3030
```cmd
3131
az group create --name MyResourceGroup --location eastus
32-
az aks create -g MyResourceGroup -n MyAKS --location eastus --disable-rbac --generate-ssh-keys
32+
az aks create -g MyResourceGroup -n MyAKS --location eastus --generate-ssh-keys
3333
```
3434

3535
## Enable Azure Dev Spaces on your AKS cluster

0 commit comments

Comments
 (0)