I had setup a POD on 3 VM's. I can able to acess it using private IP

dany kitty:
I had setup a POD on 3 VM’s. I can able to acess it using private IP

Mohamed Ayman:
You can expose your running POD using kubernetes service and you have different types.

ClusterIP. => This default type exposes the service on a cluster-internal IP
NodePort => This type of service exposes the service on each node’s IP at a static port and external for the users.
LoadBalancer => Exposes the Service externally using a cloud provider’s load balancer.

Mohamed Ayman:
Check this:
https://kubernetes.io/docs/concepts/services-networking/service/