Skip to content

Commit 64c44ac

Browse files
authored
Merge pull request #123122 from JoeyC-Dev/patch-8
Fix format and missing link in configure-azure-cni-static-block-allocation.md
2 parents e27e39f + 444d1b9 commit 64c44ac

File tree

1 file changed

+10
-6
lines changed

1 file changed

+10
-6
lines changed

articles/aks/configure-azure-cni-static-block-allocation.md

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ where N is any positive integer greater than 0
7676
7777
Ideal values with no IP wastage would require the max pods value to conform to the above expression.
7878
79-
**Example 1:** max_pods = 30, CIDR Blocks allocated per node = 2, Total IPs available for pods = (16 * 2) - 1 = 32 - 1 = 31, IP wastage per node = 31 - 30 = 1 **[Low wastage - Acceptable Case]**
80-
**Example 2:** max_pods = 31, CIDR Blocks allocated per node = 2, Total IPs available for pods = (16 * 2) - 1 = 32 - 1 = 31, IP wastage per node = 31 - 31 = 0 **[Ideal Case]**
81-
**Example 3:** max_pods = 32, CIDR Blocks allocated per node = 3, Total IPs available for pods = (16 * 3) - 1 = 48 - 1 = 47, IP wastage per node = 47 - 32 = 15 **[High Wastage - Not Recommended Case]**
79+
- **Example 1:** max_pods = 30, CIDR Blocks allocated per node = 2, Total IPs available for pods = (16 * 2) - 1 = 32 - 1 = 31, IP wastage per node = 31 - 30 = 1 **[Low wastage - Acceptable Case]**
80+
- **Example 2:** max_pods = 31, CIDR Blocks allocated per node = 2, Total IPs available for pods = (16 * 2) - 1 = 32 - 1 = 31, IP wastage per node = 31 - 31 = 0 **[Ideal Case]**
81+
- **Example 3:** max_pods = 32, CIDR Blocks allocated per node = 3, Total IPs available for pods = (16 * 3) - 1 = 48 - 1 = 47, IP wastage per node = 47 - 32 = 15 **[High Wastage - Not Recommended Case]**
8282
8383
The planning of IPs for Kubernetes services remain unchanged.
8484
@@ -87,7 +87,7 @@ The planning of IPs for Kubernetes services remain unchanged.
8787
8888
## Deployment parameters
8989
90-
The [deployment parameters][azure-cni-deployment-parameters]for configuring basic Azure CNI networking in AKS are all valid, with two exceptions:
90+
The [deployment parameters][azure-cni-deployment-parameters] for configuring basic Azure CNI networking in AKS are all valid, with two exceptions:
9191
9292
- The **vnet subnet id** parameter now refers to the subnet related to the cluster's nodes.
9393
- The parameter **pod subnet id** is used to specify the subnet whose IP addresses will be statically or dynamically allocated to pods in the node pool.
@@ -204,7 +204,7 @@ az aks nodepool add --cluster-name $clusterName -g $resourceGroup -n newnodepoo
204204

205205
- **Can some node pools in a cluster use Dynamic IP allocation while others use the new Static Block allocation?**
206206

207-
Yes, different node pools can use different allocation modes. However, once a subnet is used in one allocation mode it can only be used in the same allocation mode across all the node pools it is associated.
207+
Yes, different node pools can use different allocation modes. However, once a subnet is used in one allocation mode it can only be used in the same allocation mode across all the node pools it is associated.
208208

209209
## Next steps
210210

@@ -221,4 +221,8 @@ Learn more about networking in AKS in the following articles:
221221
[azure-cni-prereq]: ./configure-azure-cni.md#prerequisites
222222
[azure-cni-deployment-parameters]: ./azure-cni-overview.md#deployment-parameters
223223
[az-aks-enable-addons]: /cli/azure/aks#az_aks_enable_addons
224-
224+
[az-extension-add]: /cli/azure/extension#az-extension-add
225+
[az-extension-update]: /cli/azure/extension#az-extension-update
226+
[az-feature-register]: /cli/azure/feature#az-feature-register
227+
[az-feature-show]: /cli/azure/feature#az-feature-show
228+
[az-provider-register]: /cli/azure/provider#az-provider-register

0 commit comments

Comments
 (0)