- Lab
-
Libraries: If you want this lab, consider one of these libraries.
- Cloud

Exposing Services in Kubernetes
With deployments, you can create a dynamically-managed set of replica pods. But this introduces a need for an equally dynamic way to access them. Services provide a layer of abstraction that provides access to pods and other entities, allowing dynamic, high-availability access to the necessary components of your applications. In this lab, you will have the opportunity to work with services by creating a service on top of an existing deployment.

Lab Info
Table of Contents
-
Challenge
Create the `auth-svc` service
Examine the
auth-deployment
. Take note of the labels specified in the pod template, as well as thecontainerPort
exposed by the containers.kubectl get deployment auth-deployment -o yaml
Create a service descriptor file called
auth-svc.yml
.apiVersion: v1 kind: Service metadata: name: auth-svc spec: type: NodePort selector: app: auth ports: - protocol: TCP port: 8080 targetPort: 80
Create the service in the cluster.
kubectl apply -f auth-svc.yml
-
Challenge
Create the `data-svc` service
Examine the
data-deployment
. Take note of the labels specified in the pod template, as well as thecontainerPort
exposed by the containers.kubectl get deployment data-deployment -o yaml
Create a service descriptor file called
data-svc.yml
.apiVersion: v1 kind: Service metadata: name: data-svc spec: type: ClusterIP selector: app: data ports: - protocol: TCP port: 8080 targetPort: 80
Create the service in the cluster.
kubectl apply -f data-svc.yml
About the author
Real skill practice before real-world application
Hands-on Labs are real environments created by industry experts to help you learn. These environments help you gain knowledge and experience, practice without compromising your system, test without risk, destroy without fear, and let you learn from your mistakes. Hands-on Labs: practice your skills before delivering in the real world.
Learn by doing
Engage hands-on with the tools and technologies you’re learning. You pick the skill, we provide the credentials and environment.
Follow your guide
All labs have detailed instructions and objectives, guiding you through the learning process and ensuring you understand every step.
Turn time into mastery
On average, you retain 75% more of your learning if you take time to practice. Hands-on labs set you up for success to make those skills stick.