Skip to content

Commit 974a2ea

Browse files
authored
Merge pull request #87664 from zr-msft/ds-remove-sizing-qs
[Dev Spaces] remove node count and node size in cluster create comman…
2 parents 736f849 + 6fc6290 commit 974a2ea

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

articles/dev-spaces/quickstart-cli.md

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

2929
```cmd
3030
az group create --name MyResourceGroup --location eastus
31-
az aks create -g MyResourceGroup -n MyAKS --location eastus --node-vm-size Standard_DS2_v2 --node-count 1 --disable-rbac --generate-ssh-keys
31+
az aks create -g MyResourceGroup -n MyAKS --location eastus --disable-rbac --generate-ssh-keys
3232
```
3333

3434
## 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
@@ -34,7 +34,7 @@ You need to create an AKS cluster in a [supported region][supported-regions]. Th
3434

3535
```cmd
3636
az group create --name MyResourceGroup --location eastus
37-
az aks create -g MyResourceGroup -n MyAKS --location eastus --node-vm-size Standard_DS2_v2 --node-count 1 --disable-rbac --generate-ssh-keys
37+
az aks create -g MyResourceGroup -n MyAKS --location eastus --disable-rbac --generate-ssh-keys
3838
```
3939

4040
## 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
@@ -32,7 +32,7 @@ You need to create an AKS cluster in a [supported region][supported-regions]. Th
3232

3333
```cmd
3434
az group create --name MyResourceGroup --location eastus
35-
az aks create -g MyResourceGroup -n MyAKS --location eastus --node-vm-size Standard_DS2_v2 --node-count 1 --disable-rbac --generate-ssh-keys
35+
az aks create -g MyResourceGroup -n MyAKS --location eastus --disable-rbac --generate-ssh-keys
3636
```
3737

3838
## 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
@@ -32,7 +32,7 @@ You need to create an AKS cluster in a [supported region][supported-regions]. Th
3232

3333
```cmd
3434
az group create --name MyResourceGroup --location eastus
35-
az aks create -g MyResourceGroup -n MyAKS --location eastus --node-vm-size Standard_DS2_v2 --node-count 1 --disable-rbac --generate-ssh-keys
35+
az aks create -g MyResourceGroup -n MyAKS --location eastus --disable-rbac --generate-ssh-keys
3636
```
3737

3838
## 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
@@ -33,7 +33,7 @@ You must create an AKS cluster in a [supported region][supported-regions]. The b
3333

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

3939
The *MyAKS* cluster is also created with one node, using the *Standard_DS2_v2* size, and with RBAC disabled.

0 commit comments

Comments
 (0)