An administrator is preparing to deploy an Azure Kubernetes Service (AKS) cluster. The cluster will be deployed into an existing virtual network (`VNet1`) that has an address space of and a subnet named `subnet1` with an address space of .
Which IP address configuration for the Service CIDR and DNS service IP represents a valid deployment setup?
- AService CIDR: ; DNS service IP:
- BService CIDR: ; DNS service IP:
- Service CIDR: ; DNS service IP: Answer
- DService CIDR: ; DNS service IP:
Answer
Service CIDR: ; DNS service IP:
The configuration specifying a Service CIDR of and a DNS service IP of is correct. The Service CIDR is outside the virtual network's range (), avoiding routing conflicts. Additionally, the DNS service IP is located within the Service CIDR range and is not the first host IP address (), which is reserved for the internal Kubernetes API server.
Step-by-Step Solution
Key Concept
Azure Kubernetes Service IP Address Planning and Configuration