Proposed Pull Request Change

title titleSuffix description author ms.author ms.service ms.subservice ms.topic ms.date ms.custom
Configure Azure CNI Pod Subnet - Dynamic IP Allocation and enhanced subnet support Azure Kubernetes Service Learn how to configure Azure CNI Pod Subnet - Dynamic IP Allocation and enhanced subnet support in Azure Kubernetes Service (AKS) davidsmatlak davidsmatlak azure-kubernetes-service aks-networking how-to 07/09/2024 references_regions, devx-track-azurecli
📄 Document Links
GitHub View on GitHub Microsoft Learn View on Microsoft Learn
Content Truncation Detected
The generated rewrite appears to be incomplete.
Original lines: -
Output lines: -
Ratio: -
Raw New Markdown
Generating updated version of doc...
Rendered New Markdown
Generating updated version of doc...
+0 -0
+0 -0
--- title: Configure Azure CNI Pod Subnet - Dynamic IP Allocation and enhanced subnet support titleSuffix: Azure Kubernetes Service description: Learn how to configure Azure CNI Pod Subnet - Dynamic IP Allocation and enhanced subnet support in Azure Kubernetes Service (AKS) author: davidsmatlak ms.author: davidsmatlak ms.service: azure-kubernetes-service ms.subservice: aks-networking ms.topic: how-to ms.date: 07/09/2024 ms.custom: references_regions, devx-track-azurecli # Customer intent: As a Kubernetes administrator, I want to configure Azure CNI for dynamic IP allocation and enhanced subnet support in AKS, so that I can efficiently manage IP addresses and improve the scalability and performance of my Kubernetes clusters. --- # Configure Azure CNI Pod Subnet - Dynamic IP Allocation and enhanced subnet support in Azure Kubernetes Service (AKS) A drawback with the traditional CNI is the exhaustion of pod IP addresses as the AKS cluster grows, which results in the need to rebuild your entire cluster in a bigger subnet. The new dynamic IP allocation capability in Azure CNI solves this problem by allocating pod IPs from a subnet separate from the subnet hosting the AKS cluster. It offers the following benefits: * **Better IP utilization**: IPs are dynamically allocated to cluster Pods from the Pod subnet. This leads to better utilization of IPs in the cluster compared to the traditional CNI solution, which does static allocation of IPs for every node. * **Scalable and flexible**: Node and pod subnets can be scaled independently. A single pod subnet can be shared across multiple node pools of a cluster or across multiple AKS clusters deployed in the same VNet. You can also configure a separate pod subnet for a node pool. * **High performance**: Since pods are assigned virtual network IPs, they have direct connectivity to other cluster pod and resources in the VNet. The solution supports very large clusters without any degradation in performance. * **Separate VNet policies for pods**: Since pods have a separate subnet, you can configure separate VNet policies for them that are different from node policies. This enables many useful scenarios such as allowing internet connectivity only for pods and not for nodes, fixing the source IP for pod in a node pool using an Azure NAT Gateway, and using NSGs to filter traffic between node pools. * **Kubernetes network policies**: Both the Azure Network Policies and Calico work with this new solution. This article shows you how to use Azure CNI Pod Subnet - Dynamic IP Allocation and enhanced subnet support in AKS. ## Prerequisites * Review the [prerequisites][azure-cni-prereq] for configuring basic Azure CNI networking in AKS, as the same prerequisites apply to this article. * Review the [deployment parameters][azure-cni-deployment-parameters] for configuring basic Azure CNI networking in AKS, as the same parameters apply. * AKS Engine and DIY clusters aren't supported. * Azure CLI version `2.37.0` or later. * If you have an existing cluster, you need to enable Container Insights for monitoring IP subnet usage. You can enable Container Insights using the [`az aks enable-addons`][az-aks-enable-addons] command, as shown in the following example: ```azurecli-interactive az aks enable-addons --addons monitoring --name $CLUSTER_NAME --resource-group $RESOURCE_GROUP_NAME ``` ## Plan IP addressing Planning your IP addressing is much simpler with this feature. Since the nodes and pods scale independently, their address spaces can also be planned separately. Since pod subnets can be configured to the granularity of a node pool, you can always add a new subnet when you add a node pool. The system pods in a cluster/node pool also receive IPs from the pod subnet, so this behavior needs to be accounted for. IPs are allocated to nodes in batches of 16. Pod subnet IP allocation should be planned with a minimum of 16 IPs per node in the cluster; nodes will request 16 IPs on startup and will request another batch of 16 any time there are <8 IPs unallocated in their allotment. The planning of IPs for Kubernetes services and Docker bridge remain unchanged. To view and verify the NodeNetworkConfiguration (NNC) resources responsible for these IP allocations, you can run the following command: ```bash kubectl get nodenetworkconfigs -n kube-system -o wide ``` ## Maximum pods per node in a cluster with Pod Subnet - Dynamic IP Allocation and enhanced subnet support The pods per node value when using Azure CNI Pod Subnet - Dynamic IP Allocation is slightly different from the traditional CNI behavior: |CNI|Default|Configurable at deployment| |--| :--: |--| |Traditional Azure CNI|30|Yes (up to 250)| |Azure CNI Pod Subnet - Dynamic IP Allocation|250|Yes (up to 250)| All other guidance related to configuring the maximum pods per node remains the same. ## Deployment parameters The [deployment parameters][azure-cni-deployment-parameters]for configuring basic Azure CNI networking in AKS are all valid, with two exceptions: * The **subnet** parameter now refers to the subnet related to the cluster's nodes. * An additional parameter **pod subnet** is used to specify the subnet whose IP addresses will be dynamically allocated to pods. ## Configure Pod Subnet - Dynamic IP Allocation and enhanced subnet support - Azure CLI Using Pod Subnet - Dynamic IP Allocation and enhanced subnet support in your cluster is similar to the default method for configuring a cluster Azure CNI. The following example walks through creating a new virtual network with a subnet for nodes and a subnet for pods, and creating a cluster that uses Azure CNI Pod Subnet - Dynamic IP Allocation and enhanced subnet support. Be sure to replace variables such as `$subscription` with your own values. Create the virtual network with two subnets. ```azurecli-interactive RESOURCE_GROUP_NAME="myResourceGroup" VNET_NAME="myVirtualNetwork" LOCATION="westcentralus" SUBNET_NAME_1="nodesubnet" SUBNET_NAME_2="podsubnet" # Create the resource group az group create --name $RESOURCE_GROUP_NAME --location $LOCATION # Create our two subnet network az network vnet create --resource-group $RESOURCE_GROUP_NAME --location $LOCATION --name $VNET_NAME --address-prefixes 10.0.0.0/8 -o none az network vnet subnet create --resource-group $RESOURCE_GROUP_NAME --vnet-name $VNET_NAME --name $SUBNET_NAME_1 --address-prefixes 10.240.0.0/16 -o none az network vnet subnet create --resource-group $RESOURCE_GROUP_NAME --vnet-name $VNET_NAME --name $SUBNET_NAME_2 --address-prefixes 10.241.0.0/16 -o none ``` Create the cluster, referencing the node subnet using `--vnet-subnet-id` and the pod subnet using `--pod-subnet-id` and enabling the monitoring add-on. ```azurecli-interactive CLUSTER_NAME="myAKSCluster" SUBSCRIPTION="aaaaaaa-aaaaa-aaaaaa-aaaa" az aks create \ --name $CLUSTER_NAME \ --resource-group $RESOURCE_GROUP_NAME \ --location $LOCATION \ --max-pods 250 \ --node-count 2 \ --network-plugin azure \ --vnet-subnet-id /subscriptions/$SUBSCRIPTION/resourceGroups/$RESOURCE_GROUP_NAME/providers/Microsoft.Network/virtualNetworks/$VNET_NAME/subnets/$SUBNET_NAME_1 \ --pod-subnet-id /subscriptions/$SUBSCRIPTION/resourceGroups/$RESOURCE_GROUP_NAME/providers/Microsoft.Network/virtualNetworks/$VNET_NAME/subnets/$SUBNET_NAME_2 \ --enable-addons monitoring \ --generate-ssh-keys ``` ### Adding node pool When adding node pool, reference the node subnet using `--vnet-subnet-id` and the pod subnet using `--pod-subnet-id`. The following example creates two new subnets that are then referenced in the creation of a new node pool: ```azurecli-interactive SUBNET_NAME_3="node2subnet" SUBNET_NAME_4="pod2subnet" NODE_POOL_NAME="mynodepool" az network vnet subnet create --resource-group $RESOURCE_GROUP_NAME --vnet-name $VNET_NAME --name $SUBNET_NAME_3 --address-prefixes 10.242.0.0/16 -o none az network vnet subnet create --resource-group $RESOURCE_GROUP_NAME --vnet-name $VNET_NAME --name $SUBNET_NAME_4 --address-prefixes 10.243.0.0/16 -o none az aks nodepool add --cluster-name $CLUSTER_NAME --resource-group $RESOURCE_GROUP_NAME --name $NODE_POOL_NAME \ --max-pods 250 \ --node-count 2 \ --vnet-subnet-id /subscriptions/$SUBSCRIPTION/resourceGroups/$RESOURCE_GROUP_NAME/providers/Microsoft.Network/virtualNetworks/$VNET_NAME/subnets/$SUBNET_NAME_3 \ --pod-subnet-id /subscriptions/$SUBSCRIPTION/resourceGroups/$RESOURCE_GROUP_NAME/providers/Microsoft.Network/virtualNetworks/$VNET_NAME/subnets/$SUBNET_NAME_4 \ --no-wait ``` ## Monitor IP subnet usage Azure CNI provides the capability to monitor IP subnet usage. To enable IP subnet usage monitoring, follow the steps below: ### Get the YAML file 1. Download or grep the file named container-azm-ms-agentconfig.yaml from [GitHub][github]. 2. Find **`azure_subnet_ip_usage`** in integrations. Set `enabled` to `true`. 3. Save the file. ### Get the AKS credentials Set the variables for subscription, resource group and cluster. Consider the following as examples: ```azurecli-interactive az account set --subscription $SUBSCRIPTION az aks get-credentials --name $CLUSTER_NAME --resource-group $RESOURCE_GROUP_NAME ``` ### Apply the config 1. Open the terminal in the folder in which the downloaded **container-azm-ms-agentconfig.yaml** file is saved. 1. Apply the config using the `kubectl apply -f container-azm-ms-agentconfig.yaml` command. This will restart the pod and after 5-10 minutes, the metrics will be visible. 1. View the metrics on the cluster by navigating to Workbooks on the cluster page in the Azure portal, and find the workbook named *Subnet IP Usage*. ## Azure CNI Pod Subnet - Dynamic IP Allocation and enhanced subnet support FAQs * **Can I assign multiple pod subnets to a cluster/node pool?** Only one subnet can be assigned to a cluster or node pool. However, multiple clusters or node pools can share a single subnet. * **Can I assign Pod subnets from a different VNet altogether?** No, the pod subnet should be from the same VNet as the cluster. * **Can some node pools in a cluster use the traditional CNI while others use the new CNI?** The entire cluster should use only one type of CNI. ## Next steps Learn more about networking in AKS in the following articles: * [Use a static IP address with the Azure Kubernetes Service (AKS) load balancer](static-ip.md) * [Use an internal load balancer with Azure Kubernetes Service (AKS)](internal-lb.md) * [Use the application routing addon in Azure Kubernetes Service (AKS)](app-routing.md) <!-- LINKS - External --> [github]: https://raw.githubusercontent.com/microsoft/Docker-Provider/ci_prod/kubernetes/container-azm-ms-agentconfig.yaml <!-- LINKS - Internal --> [azure-cni-prereq]: ./configure-azure-cni.md#prerequisites [azure-cni-deployment-parameters]: ./azure-cni-overview.md#deployment-parameters [az-aks-enable-addons]: /cli/azure/aks#az-aks-enable-addons
Success! Branch created successfully. Create Pull Request on GitHub
Error: