Skip to content

Commit f13517e

Browse files
authored
Merge pull request #69122 from lisaguthrie/k8sversionupdates
removing --kubernetes-version flag from commands
2 parents 11cbc61 + 960032c commit f13517e

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

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

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

6666
```cmd
67-
az aks create -g MyResourceGroup -n MyAKS --location <region> --kubernetes-version 1.10.13 --generate-ssh-keys
67+
az aks create -g MyResourceGroup -n MyAKS --location <region> --generate-ssh-keys
6868
```
6969

7070
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
@@ -65,7 +65,7 @@ az group create --name MyResourceGroup --location <region>
6565
Create a Kubernetes cluster with the following command:
6666

6767
```cmd
68-
az aks create -g MyResourceGroup -n MyAKS --location <region> --kubernetes-version 1.10.13 --generate-ssh-keys
68+
az aks create -g MyResourceGroup -n MyAKS --location <region> --generate-ssh-keys
6969
```
7070

7171
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
@@ -65,7 +65,7 @@ az group create --name MyResourceGroup --location <region>
6565
Create a Kubernetes cluster with the following command:
6666

6767
```cmd
68-
az aks create -g MyResourceGroup -n MyAKS --location <region> --kubernetes-version 1.10.13 --generate-ssh-keys
68+
az aks create -g MyResourceGroup -n MyAKS --location <region> --generate-ssh-keys
6969
```
7070

7171
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
@@ -25,7 +25,7 @@ az group create --name MyResourceGroup --location <region>
2525
Create a Kubernetes cluster with the following command:
2626

2727
```azurecli-interactive
28-
az aks create -g MyResourceGroup -n MyAKS --location <region> --kubernetes-version 1.10.13
28+
az aks create -g MyResourceGroup -n MyAKS --location <region>
2929
```
3030

3131
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-java.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ In this guide, you will learn how to:
3131

3232
```cmd
3333
az group create --name MyResourceGroup --location <region>
34-
az aks create -g MyResourceGroup -n myAKS --location <region> --kubernetes-version 1.10.13 --generate-ssh-keys
34+
az aks create -g MyResourceGroup -n myAKS --location <region> --generate-ssh-keys
3535
```
3636
3737
## Set up Azure Dev Spaces

articles/dev-spaces/quickstart-netcore.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ In this guide, you will learn how to:
3030

3131
```cmd
3232
az group create --name MyResourceGroup --location <region>
33-
az aks create -g MyResourceGroup -n MyAKS --location <region> --kubernetes-version 1.10.9 --generate-ssh-keys
33+
az aks create -g MyResourceGroup -n MyAKS --location <region> --generate-ssh-keys
3434
```
3535
3636
## Set up Azure Dev Spaces

articles/dev-spaces/quickstart-nodejs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ In this guide, you will learn how to:
3030

3131
```cmd
3232
az group create --name MyResourceGroup --location <region>
33-
az aks create -g MyResourceGroup -n myAKS --location <region> --kubernetes-version 1.10.13 --generate-ssh-keys
33+
az aks create -g MyResourceGroup -n myAKS --location <region> --generate-ssh-keys
3434
```
3535
3636
## Set up Azure Dev Spaces

0 commit comments

Comments
 (0)