Skip to content

Commit 6611844

Browse files
author
Sakthi Vetrivel
committed
fixing network sizes
1 parent 2ecf2cd commit 6611844

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/openshift/tutorial-create-cluster.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ Next, you will create a virtual network containing two empty subnets.
8585
An Azure resource group is a logical group in which Azure resources are deployed and managed. When you create a resource group, you are asked to specify a location. This location is where resource group metadata is stored, it is also where your resources run in Azure if you don't specify another region during resource creation. Create a resource group using the [az group create][az-group-create] command.
8686

8787
```azurecli-interactive
88-
az group create --name $CLUSTER --location $LOCATION
88+
az group create --name $RESOURCEGROUP --location $LOCATION
8989
```
9090
9191
The following example output shows the resource group created successfully:
@@ -123,16 +123,16 @@ Next, you will create a virtual network containing two empty subnets.
123123
"newVNet": {
124124
"addressSpace": {
125125
"addressPrefixes": [
126-
"10.0.0.0/8"
126+
"10.0.0.0/22"
127127
]
128-
},
128+
},
129129
"id": "/subscriptions/<guid>/resourceGroups/aro-rg/providers/Microsoft.Network/virtualNetworks/aro-vnet",
130130
"location": "eastus",
131131
"name": "aro-vnet",
132132
"provisioningState": "Succeeded",
133133
"resourceGroup": "aro-rg",
134134
"type": "Microsoft.Network/virtualNetworks"
135-
}
135+
}
136136
}
137137
```
138138
@@ -143,7 +143,7 @@ Next, you will create a virtual network containing two empty subnets.
143143
--resource-group $RESOURCEGROUP \
144144
--vnet-name aro-vnet \
145145
--name master-subnet \
146-
--address-prefixes 10.0.1.0/24 \
146+
--address-prefixes 10.0.0.0/23 \
147147
--service-endpoints Microsoft.ContainerRegistry
148148
```
149149
@@ -154,7 +154,7 @@ Next, you will create a virtual network containing two empty subnets.
154154
--resource-group $RESOURCEGROUP \
155155
--vnet-name aro-vnet \
156156
--name worker-subnet \
157-
--address-prefixes 10.1.0.0/20 \
157+
--address-prefixes 10.0.1.0/23 \
158158
--service-endpoints Microsoft.ContainerRegistry
159159
```
160160

0 commit comments

Comments
 (0)