What I Have: A Kubernetes Cluster on GCE with three Nodes. Lets suppose the master has the IP <MasterIP>
. Additionally I have a Service within the cluster of Type NodePort which listens to the port <PORT>
. I can access the service using <NodeIP>:<PORT>
What I would like to do: Access the service with <MasterIP>:<PORT>
How can I forward the port from <MasterIP>
to within the cluster? in other words: <MasterIP>:<PORT> --> <NodeIP>:<PORT>
The reason why I would like to do this is simply I don't want to rely on a specific NodeIP
since the Pod can be rescheduled to another Node.
Thank you
A Kubernetes
Service
withtype: NodePort
opens the same port on every Node and sends the traffic to wherever the pod is currently scheduled using internal IP routing. You should be able to access the service at<AnyNodeIP>:<PORT>
.In Google's Kubernetes cluster, the master machines are not available for routing traffic. The way to reliably expose your services is to use a
Service
withtype: LoadBalancer
which will provide a single IP that resolves to your service regardless of which Nodes are up or what their IPs are.