Deploying and Configuring Apps in Kubernetes

30 minutes
  • 3 Learning Objectives

About this Hands-on Lab

Kubernetes is a great tool for running applications. In this lab, you will have a chance to get hands-on with the process of deploying and configuring Kubernetes applications all the way from code to K8s. You will create a Git repository for your code, build a container image for the application using Docker, and run and configure the application in a Kubernetes cluster.

Learning Objectives

Successfully complete this lab by achieving the following learning objectives:

Create a Codebase Using Git

Clone the application GitHub repository to the lab server under /home/cloud_user.

The repository is located at https://github.com/linuxacademy/content-k8sapps-is-it-pirate-day.

Optionally, you can create your own fork in GitHub (requires a GitHub account) and clone that instead.

Build a Docker Image for the App with All Needed Dependencies

The source code already includes a Dockerfile, but it is not configured to include the necessary serve package that will be used to serve the static app content.

Edit the Dockerfile to run the command yarn global add serve during the image build process in order to install this package within the resulting image.

Then, build a Docker image for the app called <YOUR_DOCKER_HUB_USERNAME>/pirate-day:0.0.1. Push the image to Docker Hub.

Deploy the Application to Kubernetes with the Necessary Config

Create a ConfigMap called pirate-config with the following data:

data:
  .env: |
    REACT_APP_PIRATE_MESSAGE='No!'

Feel free to customize the message value if you wish.

Create a Pod called pirate-day to run the container image for the app.

  • Attach the label app=pirate-day to the Pod.
  • Mount the pirate-config ConfigMap data to a file within the container at /usr/src/app/.env. This should make the app display the message defined in the ConfigMap data.

There is a pre-existing Service that will allow you to access the app for testing. Using the Public IP address of the K8s Server, you should be able to access the app in a browser at http://<K8S_SERVER_PUBLIC_IP>:30080 for testing.

Additional Resources

Welcome to PirateCorp! A company that exists to promote pirate-related history and lore!

We're developing our new website, Is It International Talk Like a Pirate Day?. This site will inform the public of whether or not it is currently International Talk Like a Pirate Day. It's still in the early stages of development, but we'd like you to go ahead and begin the process of getting it working in our Kubernetes cluster. We'd also like you to implement some best practices as part of the process.

Note: You will need a Docker Hub account to complete this lab.

What are Hands-on Labs

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.

Sign In
Welcome Back!

Psst…this one if you’ve been moved to ACG!

Get Started
Who’s going to be learning?