Which of the following can be used to expose a set of pods externally to the internet in a Kubernetes cluster? (Select THREE.)
Ingress provides external access to services based on rules.
Why this answer
Option A: NodePort exposes a service on each node's IP at a static port. Option C: Ingress provides HTTP/HTTPS routing to services. Option D: LoadBalancer provisions a cloud load balancer to expose the service.
Option B: ClusterIP is only reachable within the cluster. Option E: Headless service is for discovering individual pods, not external exposure.