Skip to content

Commit e135822

Browse files
authored
Merge pull request #113576 from JoeyC-Dev/JoeyC-Dev-patch-1
Remove the option --docker-bridge-address from the example
2 parents 323db36 + bd09f25 commit e135822

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

articles/aks/configure-kubenet.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -137,7 +137,6 @@ For more information to help you decide which network model to use, see [Compare
137137
--service-cidr 10.0.0.0/16 \
138138
--dns-service-ip 10.0.0.10 \
139139
--pod-cidr 10.244.0.0/16 \
140-
--docker-bridge-address 172.17.0.1/16 \
141140
--vnet-subnet-id $SUBNET_ID
142141
```
143142
@@ -149,7 +148,6 @@ For more information to help you decide which network model to use, see [Compare
149148
* This address range must be large enough to accommodate the number of nodes that you expect to scale up to. You can't change this address range once the cluster is deployed.
150149
* The pod IP address range is used to assign a */24* address space to each node in the cluster. In the following example, the *--pod-cidr* of *10.244.0.0/16* assigns the first node *10.244.0.0/24*, the second node *10.244.1.0/24*, and the third node *10.244.2.0/24*.
151150
* As the cluster scales or upgrades, the Azure platform continues to assign a pod IP address range to each new node.
152-
* *--docker-bridge-address* is optional. The address lets the AKS nodes communicate with the underlying management platform. This IP address must not be within the virtual network IP address range of your cluster and shouldn't overlap with other address ranges in use on your network. The default value is 172.17.0.1/16.
153151
154152
> [!NOTE]
155153
> If you want to enable an AKS cluster to include a [Calico network policy][calico-network-policies], you can use the following command:
@@ -159,7 +157,8 @@ For more information to help you decide which network model to use, see [Compare
159157
> --resource-group myResourceGroup \
160158
> --name myAKSCluster \
161159
> --node-count 3 \
162-
> --network-plugin kubenet --network-policy calico \
160+
> --network-plugin kubenet \
161+
> --network-policy calico \
163162
> --vnet-subnet-id $SUBNET_ID
164163
> ```
165164

0 commit comments

Comments
 (0)