You plan to configure a new Azure Kubernetes Service (AKS) cluster that will use the Azure CNI network plugin. Which of the following are characteristics of this network model? (Select two.)
- Every pod in the cluster is assigned a private IP address from the subnet of the virtual network.Answer
- The cluster requires a larger virtual network IP address space than a Kubenet-based cluster of the same size.Answer
- CPods are assigned IP addresses from a separate address space and must use Network Address Translation (NAT) to access other virtual network resources.
- DUser-defined routes (UDRs) must be manually created on the subnet to enable pod-to-pod communication across different nodes.
- EEach pod is automatically assigned a public IP address to allow direct inbound traffic from the internet.
Answer
Every pod in the cluster is assigned a private IP address from the subnet of the virtual network, and the cluster requires a larger virtual network IP address space than a Kubenet-based cluster of the same size.
Under the Azure CNI model, pods receive IP addresses directly from the pre-configured subnet of the virtual network, which allows direct IP-level communication with other resources but requires a larger block of IPs from the subnet.
Step-by-Step Solution
Key Concept
Azure CNI vs Kubenet networking configuration in Azure Kubernetes Service (AKS)
Estimated Time:45s