How can I expose service of type NodePort
to internet without using type LoadBalancer
? Every resource I have found was doing it by using load balancer. But I don't want load balancing its expensive and unnecessary for my use case because I am running one instance of postgres
image which is mounting to persistent disk and I would like to be able to connect to my database from my PC using pgAdmin. If it is possible could you please provide bit more detailed answer as I am new to Kubernetes, GCE and networking.
Just for the record and bit more context I have deployment running 3 replicas of my API server to which I am connecting through load balancer with set loadBalancerIP and another deployment which is running one instance of postgres with NodePort service through which my API servers are communicating with my db. And my problem is that maintaining the db without public access is hard.
using
NodePort
as Service type works straight away e.g. like this:More details can be found in the documentation. The drawback of using
NodePort
is that you've to take care of integrating with your providers firewall by yourself. A starting port for that can also be found in the Configuring Your Cloud Provider's Firewalls section of the official documentation.For GCE opening up the above for publicly on all nodes could look like:
Once this is in place your services should be accessable through any of the public IPs of your nodes. You'll find them with: