A library runs on a cloud Kubernetes environment and wants the platform to provision an external load balancer IP for a public web Service. Which Service type requests that?
Select an answer to reveal the explanation.
Short Explanation
Want the cloud to hand you a public LB address? Type LoadBalancer — ClusterIP and headless won't place that order.
Full Explanation
Service type LoadBalancer signals the cloud controller or equivalent integration to create an external load balancer and populate status with an ingress address. ClusterIP and headless modes do not request that provisioner behavior; NodePort alone does not equal LoadBalancer across providers.