DEV Community

Brijesh Gupta
Brijesh Gupta

Posted on

Answer: What's the difference between ClusterIP, NodePort and LoadBalancer service types in Kubernetes?

Feature ClusterIP NodePort LoadBalancer
Exposition Exposes the Service on an internal IP in the cluster. Exposing services to external clients Exposing services to external clients
Cluster This type makes the Service only reachable from within the cluster A NodePort service, each cluster node opens a port on the node itself

Top comments (0)