Reputation: 21
While creating service with node port in Play with kubernetes its not exposing the url to access the service
I think its happening very frequently now, does any one facing this issue?
Upvotes: 2
Views: 459
Reputation: 22884
NodePort never "exposes URL". NodePort is only creating a specific forwarding/nat rules to make sure trafic from port X on all nodes running kube-proxy is "redirected" to endpoints of service Y.
Upvotes: 1