Your company has an Azure subscription containing a virtual network named VNet1 (). VNet1 contains a subnet named Subnet1 (). You need to deploy a new Azure Kubernetes Service (AKS) cluster named AKS1 to run a microservices application. The deployment must meet the following requirements:
- The cluster must support a system node pool that can scale up to a maximum of 10 nodes.
- Each node in the system node pool must support up to 30 pods.
- The IP addresses for the pods must be routable directly within VNet1 without using Network Address Translation (NAT).
- The cluster API server must not be exposed to the public internet, and must be accessible only from VNet1 and peered networks.
- You must minimize administrative effort for DNS resolution of the API server.
Which two configurations should you perform? (Select two.)
- ADeploy AKS1 to Subnet1 and configure it to use the Kubenet network plugin.
- Create a new subnet in VNet1 with an address prefix of 10.150.2.0/23 and deploy AKS1 using the Azure CNI network plugin.Answer
- Enable the private cluster feature and configure the cluster to use a system-assigned private DNS zone.Answer
- DEnable the private cluster feature and deploy a custom Azure Private DNS zone named privatelink.eastus.azmk8s.io.
- EDeploy AKS1 to Subnet1 and configure it to use the Azure CNI network plugin.