- Lab
- A Cloud Guru
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.
Path 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
What's a lab?
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.
Provided environment for hands-on practice
We will provide the credentials and environment necessary for you to practice right within your browser.
Guided walkthrough
Follow along with the author’s guided walkthrough and build something new in your provided environment!
Did you know?
On average, you retain 75% more of your learning if you get time for practice.