You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
2. Create a cluster with Azure CNI Overlay. Use the argument `--network-plugin-mode` to specify that this is an overlay cluster. If the pod CIDR is not specified then AKS assigns a default space, viz. 10.244.0.0/16. Replace the values for the variables `clusterName` and `subscription`.
150
150
151
-
```azurecli-interactive
152
-
clusterName="myOverlayCluster"
153
-
subscription="aaaaaaa-aaaaa-aaaaaa-aaaa"
154
-
155
-
az aks create -n $clusterName -g $resourceGroup --location $location --network-plugin azure --network-plugin-mode overlay --pod-cidr 192.168.0.0/16 --vnet-subnet-id /subscriptions/$subscription/resourceGroups/$resourceGroup/providers/Microsoft.Network/virtualNetworks/$vnet/subnets/nodesubnet
156
-
```
157
-
158
-
## Frequently asked questions
159
-
160
-
**How do pods and cluster nodes communicate with each other?*
161
-
162
-
Pods and nodes talk to each other directly without any SNAT requirements.
163
-
164
-
165
-
**Can I configure the size of the address space assigned to each space?*
166
-
167
-
No, this is fixed at `/24` today and can't be changed.
168
-
169
-
170
-
**Can I add more private pod CIDRs to a cluster after the cluster has been created?*
171
-
172
-
No, a private pod CIDR can only be specified at the time of cluster creation.
173
-
174
-
175
-
**What are the max nodes and pods per cluster supported by Azure CNI Overlay?*
151
+
```azurecli-interactive
152
+
clusterName="myOverlayCluster"
153
+
subscription="aaaaaaa-aaaaa-aaaaaa-aaaa"
154
+
155
+
az aks create -n $clusterName -g $resourceGroup --location $location --network-plugin azure --network-plugin-mode overlay --pod-cidr 192.168.0.0/16 --vnet-subnet-id /subscriptions/$subscription/resourceGroups/$resourceGroup/providers/Microsoft.Network/virtualNetworks/$vnet/subnets/nodesubnet
156
+
```
176
157
177
-
The max scale in terms of nodes and pods per cluster is the same as the max limits supported by AKS today.
0 commit comments