Skip to content

Contact sales

By filling out this form and clicking submit, you acknowledge our privacy policy.
  • Labs icon Lab
  • A Cloud Guru
Google Cloud Platform icon
Labs

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.

Google Cloud Platform icon
Labs

Path Info

Level
Clock icon Intermediate
Duration
Clock icon 1h 0m
Published
Clock icon Mar 31, 2019

Contact sales

By filling out this form and clicking submit, you acknowledge our privacy policy.

Table of Contents

  1. Challenge

    Create the `auth-svc` service

    Examine the auth-deployment. Take note of the labels specified in the pod template, as well as the containerPort 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
    
  2. Challenge

    Create the `data-svc` service

    Examine the data-deployment. Take note of the labels specified in the pod template, as well as the containerPort 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
    

The Cloud Content team comprises subject matter experts hyper focused on services offered by the leading cloud vendors (AWS, GCP, and Azure), as well as cloud-related technologies such as Linux and DevOps. The team is thrilled to share their knowledge to help you build modern tech solutions from the ground up, secure and optimize your environments, and so much more!

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.

Start learning by doing today

View Plans