renuraj
renuraj

Reputation: 21

Play with kubernetes not exposing the node port to outside world

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

Answers (1)

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

Related Questions