Building-permits developers need DNS that returns the Pod IPs themselves for direct discovery, not a single ClusterIP. Which Service configuration fits?
Select an answer to reveal the explanation.
Short Explanation
Need the roster of Pod addresses, not one VIP? Create a headless Service — clusterIP: None.
Full Explanation
Headless Services (clusterIP: None) skip the virtual IP and expose Pod DNS/SRV records suitable for StatefulSet-style or client-side discovery. Standard ClusterIP Services provide a VIP; LoadBalancer and NodePort features do not by themselves create headless DNS behavior.