Having a kubernetes service
(of type ClusterIP
) connected to a set of pod
s, but none of them are currently ready - what will happen to the request?
Will it:
It will time out.
Kube-proxy pulls out the IP addresses from healthy pods and sets as endpoints of the service (backends). Also, note that all kube-proxy does is to re-write the iptables when you create, delete or modify a service.
So, when you send a request within your network and there is no one to reply, your request will timeout.