Skip to content

Commit 1d9c371

Browse files
Merge pull request #107454 from andreguerra1/patch-1
document improvement
2 parents 2bb5899 + d8e13d9 commit 1d9c371

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

articles/aks/configure-kubenet.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -147,16 +147,16 @@ az aks create \
147147
--docker-bridge-address 172.17.0.1/16 \
148148
--vnet-subnet-id $SUBNET_ID
149149
```
150-
* The *--service-cidr* is optional. This address is used to assign internal services in the AKS cluster an IP address. This IP address range should be an address space that isn't in use elsewhere in your network environment, including any on-premises network ranges if you connect, or plan to connect, your Azure virtual networks using Express Route or a Site-to-Site VPN connection.
150+
* The *--service-cidr* is optional. This address is used to assign internal services in the AKS cluster an IP address. This IP address range should be an address space that isn't in use elsewhere in your network environment, including any on-premises network ranges if you connect, or plan to connect, your Azure virtual networks using Express Route or a Site-to-Site VPN connection. The default value is 10.0.0.0/16.
151151

152-
* The *--dns-service-ip* is optional. The address should be the *.10* address of your service IP address range.
152+
* The *--dns-service-ip* is optional. The address should be the *.10* address of your service IP address range. The default value is 10.0.0.10.
153153

154-
* The *--pod-cidr* is optional. This address should be a large address space that isn't in use elsewhere in your network environment. This range includes any on-premises network ranges if you connect, or plan to connect, your Azure virtual networks using Express Route or a Site-to-Site VPN connection.
154+
* The *--pod-cidr* is optional. This address should be a large address space that isn't in use elsewhere in your network environment. This range includes any on-premises network ranges if you connect, or plan to connect, your Azure virtual networks using Express Route or a Site-to-Site VPN connection. The default value is 10.244.0.0/16.
155155
* 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 if you need more addresses for additional nodes.
156156
* 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*.
157157
* As the cluster scales or upgrades, the Azure platform continues to assign a pod IP address range to each new node.
158158

159-
* The *--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.
159+
* The *--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.
160160

161161
> [!Note]
162162
> If you wish to enable an AKS cluster to include a [Calico network policy][calico-network-policies] you can use the following command.
@@ -254,7 +254,6 @@ az aks create \
254254
--node-count 3 \
255255
--network-plugin kubenet \
256256
--vnet-subnet-id $SUBNET_ID \
257-
--enable-managed-identity \
258257
--assign-identity <identity-resource-id>
259258
```
260259

0 commit comments

Comments
 (0)