Intermediate
Kubernetes
Q61 / 100
What is a "Headless Service" in Kubernetes?
Correct! Well done.
Incorrect.
The correct answer is B) A Service created with "clusterIP: None", which does not get a cluster IP but instead returns the IPs of individual Pods directly via DNS, useful for stateful applications needing direct Pod addressing
B
Correct Answer
A Service created with "clusterIP: None", which does not get a cluster IP but instead returns the IPs of individual Pods directly via DNS, useful for stateful applications needing direct Pod addressing
Explanation
Headless Services skip load-balancing and cluster IP allocation, instead allowing DNS queries to resolve directly to the IPs of the backing Pods — commonly used with StatefulSets.
Progress
61/100