Looking for the entire 7 part guide? Start at the Overview

In Kubernetes, a Service is an abstraction that provides a stable, IP address and DNS name for a set of Pods. Services allow you to decouple the logical representation of your application from the underlying infrastructure, making it easier to manage and scale your application over time.

Here are some key features of Services in Kubernetes:

  • Services provide a stable IP address and DNS name: A Service is assigned a static IP address and DNS name that remains the same even if the underlying Pods are recreated or rescheduled. This allows other components of your application to reliably connect to the Service, without having to know the details of the underlying Pod IP addresses.

  • Services allow you to load balance traffic: When multiple replicas of a Pod are running, a Service can distribute incoming traffic across all of the replicas, using a load balancing algorithm. This ensures that traffic is evenly distributed and that no single Pod becomes overloaded.

  • Services can be used with selectors: You can use selectors to specify which Pods are included in a Service. This allows you to group related Pods together and provide a stable endpoint for them.

  • Services can be used for internal or external access: Services can be used for internal traffic within a Kubernetes cluster or for external traffic from outside the cluster. You can expose a Service externally using a variety of methods, such as NodePort or LoadBalancer.

  • Services can be used for service discovery: Kubernetes provides built-in DNS and service discovery features that allow your application to automatically discover and connect to other Services in the cluster. This makes it easy to build complex, distributed applications that are highly scalable and resilient.

Overall, Services are a key component of Kubernetes for providing a stable, load-balanced endpoint for your application. By decoupling the logical representation of your application from the underlying infrastructure, Services make it easier to manage and scale your application over time, while providing a reliable and self-healing foundation for running containerized workloads in Kubernetes.

Here are some examples of managing services in Kubernetes using the command line interface (CLI):

Create a service:

1
$ kubectl create service nodeport my-service --tcp=80:80

This command will create a NodePort service named my-service that exposes port 80 of the pods to the external network.

Get information about the services:

1
$ kubectl get services

This command will display information about all the services in the Kubernetes cluster, including their name, type, cluster IP, external IP, and ports.

Describe a service:

1
$ kubectl describe service my-service

This command will display detailed information about the specified service, including its IP address, ports, and selectors.

Update a service:

1
$ kubectl apply -f service-definition.yaml

This command will update the service based on the configuration specified in the service-definition.yaml file.

Delete a service:

1
$ kubectl delete service my-service

This command will delete the specified service from the Kubernetes cluster.

These are just a few examples of the many commands available for managing services in Kubernetes.