nerdexam
Microsoft

AZ-500 · Question #24

You are testing an Azure Kubernetes Service (AKS) cluster. The cluster is configured as shown in the exhibit. You plan to deploy the cluster to production. You disable HTTP application routing. You…

The correct answer is A. Create an AKS Ingress controller. Explanation Creating an AKS Ingress Controller (Option A) is correct because it acts as a reverse proxy that routes external HTTP/HTTPS traffic to internal services using a single IP address, while also handling TLS termination - exactly what the question requires after…

Submitted by ravi_2018· Mar 6, 2026Secure networking

Question

You are testing an Azure Kubernetes Service (AKS) cluster. The cluster is configured as shown in the exhibit. You plan to deploy the cluster to production. You disable HTTP application routing. You need to implement application routing that will provide reverse proxy and TLS termination for AKS services by using a single IP address. What should you do?

Exhibits

AZ-500 question #24 exhibit 1
AZ-500 question #24 exhibit 2

Options

  • ACreate an AKS Ingress controller.
  • BInstall the container network interface (CNI) plug-in.
  • CCreate an Azure Standard Load Balancer.
  • DCreate an Azure Basic Load Balancer.

How the community answered

(50 responses)
  • A
    70% (35)
  • B
    18% (9)
  • C
    8% (4)
  • D
    4% (2)

Explanation

Explanation

Creating an AKS Ingress Controller (Option A) is correct because it acts as a reverse proxy that routes external HTTP/HTTPS traffic to internal services using a single IP address, while also handling TLS termination - exactly what the question requires after disabling the built-in HTTP application routing add-on.

Option B is wrong because the CNI plug-in is a network interface component that handles pod-level networking and IP assignment within the cluster - it does not provide reverse proxy functionality or TLS termination. Option C is wrong because an Azure Standard Load Balancer operates at Layer 4 (TCP/UDP) and can distribute traffic, but it cannot perform TLS termination or path-based routing with a single IP the way an Ingress controller can. Option D is wrong for the same reasons as Option C, and additionally, Azure Basic Load Balancers are limited in features and not recommended for production AKS workloads.

Memory Tip: Think of the Ingress Controller as the "smart traffic cop" for your cluster - it sits at a single door (IP), reads the destination on each request (Layer 7), strips the TLS envelope, and directs traffic to the right service. Load Balancers just forward packets blindly; Ingress Controllers understand the traffic.

Topics

#AKS Ingress#TLS Termination#Application Routing#Network Security

Community Discussion

No community discussion yet for this question.

Full AZ-500 Practice