What’s the difference between ClusterIP, NodePort and LoadBalancer service types in Kubernetes?

Question 1 – I’m reading the documentation and I’m slightly confused with the wording. It says: ClusterIP: Exposes the service on a cluster-internal IP. Choosing this value makes the service only reachable from within the cluster. This is the default ServiceType NodePort: Exposes the service on each Node’s IP at a static port (the NodePort). … Read more