An administrator is designing a hybrid networking architecture to connect an on-premises datacenter to Azure using an ExpressRoute connection. The Azure environment consists of a hub virtual network (`VNet-Hub` with address space ) and a peered spoke virtual network (`VNet-Spoke` with address space ).
You plan to deploy an Azure Kubernetes Service (AKS) cluster into a subnet named `AKS-Subnet` () within `VNet-Spoke`. The cluster will host standard microservices and a specialized high-performance GPU-intensive workload.
You must configure the cluster to meet the following requirements:
* Pods must be allocated IP addresses from a private network range that does not consume IP addresses from the `VNet-Spoke` address space.
* The Kubernetes API server must be accessible only via a private IP address within the virtual network.
* The specialized GPU-intensive workload must run on a dedicated node pool named `gpu-pool`, and no standard microservice pods may be scheduled on the GPU nodes.
Which of the following configurations should you implement to meet the requirements? (Select two.)
- Deploy the AKS cluster as a private cluster and use the Azure CNI Overlay network plugin.Answer
- Apply a taint with the value sku=gpu:NoSchedule to the gpu-pool node pool.Answer
- CDeploy the AKS cluster as a private cluster and use the Kubenet network plugin with a pod CIDR of .
- DApply a node label with the value sku=gpu to the gpu-pool node pool and configure standard microservice pods with node selectors.
- ECreate a Kubernetes Service of type LoadBalancer with an internal load balancer annotation to expose the API server.