An administrator is deploying a new Azure Kubernetes Service (AKS) cluster in an environment with an existing virtual network (). To comply with a tenant security mandate, traffic from Pods to on-premises databases must not undergo network address translation (NAT), and each Pod must be assigned a unique, routable IP address from the virtual network subnet (). Which network model should the administrator configure for the AKS cluster?
- Azure CNIAnswer
- BKubenet
- CAzure Private Link
- DVirtual Network NAT
Answer
Azure CNI
The correct answer is Azure CNI. Under this model, every Pod gets an IP address from the subnet and can be accessed directly. This avoids network address translation (NAT) for outbound traffic from the node to the rest of the virtual network or on-premises networks.
Step-by-Step Solution
Key Concept
Azure CNI assigns IP addresses from the subnet directly to the Pods, avoiding NAT for communication with other resources in the virtual network.
Estimated Time:1m 0s