Google News
logo
Kubernetes - Interview Questions
What are the different types of services in Kubernetes?
Following is the list of various services available in Kubernetes :
 
* Cluster IP service : It exposes the services on cluster internal IP and makes the services reachable within the cluster only.

* Load Balancer service : It provides services externally using a cloud provider’s load balancer. It creates the service to route the external load balancer automatically.

*
Node Port service : It exposes the services on each node’s IP at the static port.

* External Name Creation service : It navigates the service to the contents of the external field by returning the CNAME record by its value.
Advertisement