Back to Glossary
Kubernetes

What is ClusterIP?

The default Kubernetes Service type that exposes a service on an internal cluster IP.

ClusterIP is the default Service type in Kubernetes. It assigns a virtual IP address that is only reachable within the cluster. Other pods communicate with the service using this IP (or its DNS name), and kube-proxy load-balances requests across the backing pods. ClusterIP services are not accessible from outside the cluster — use NodePort, LoadBalancer, or Ingress for external access.

Test your knowledge of ClusterIP and 130 other DevOps concepts