
Before you begin
- Labs create a Google Cloud project and resources for a fixed time
- Labs have a time limit and no pause feature. If you end the lab, you'll have to restart from the beginning.
- On the top left of your screen, click Start lab to begin
Create a new Cluster
/ 25
Create the StorageClass
/ 25
Deploying the Headless Service and StatefulSet
/ 25
Scaling the MongoDB replica set
/ 25
This lab was developed with our partner, MongoDB. Your personal information may be shared with MongoDB, the lab sponsor, if you have opted-in to receive product updates, announcements, and offers in your Account Profile.
Kubernetes is an open source container orchestration tool that handles the complexities of running containerized applications. You can run Kubernetes applications with Kubernetes Engine
—a Google Cloud computing service that offers many different customizations and integrations. In this lab, you will get some practical experience with Kubernetes by learning how to set up a MongoDB database with a StatefulSet. Running a stateful application (a database) on a stateless service (container) may sound contradictory. However, after getting hands-on practice with this lab you will quickly see how that's not the case. In fact, by using a few open-source tools you will see how Kubernetes and stateless services can go hand-in-hand.
In this lab, you will learn the following:
This is an advanced level lab. Familiarity with Kubernetes or containerized applications is suggested. Experience with the Google Cloud Shell/SDK and MongoDB is also recommended. If you are looking to get up to speed in these services, be sure to check out the following labs:
Once you're ready, scroll down to get your lab environment set up.
Read these instructions. Labs are timed and you cannot pause them. The timer, which starts when you click Start Lab, shows how long Google Cloud resources will be made available to you.
This Qwiklabs hands-on lab lets you do the lab activities yourself in a real cloud environment, not in a simulation or demo environment. It does so by giving you new, temporary credentials that you use to sign in and access Google Cloud for the duration of the lab.
To complete this lab, you need:
Note: If you already have your own personal Google Cloud account or project, do not use it for this lab.
Note: If you are using a Pixelbook, open an Incognito window to run this lab.
Click the Start Lab button. If you need to pay for the lab, a pop-up opens for you to select your payment method. On the left is a panel populated with the temporary credentials that you must use for this lab.
Copy the username, and then click Open Google Console. The lab spins up resources, and then opens another tab that shows the Sign in page.
Tip: Open the tabs in separate windows, side-by-side.
In the Sign in page, paste the username that you copied from the Connection Details panel. Then copy and paste the password.
Important: You must use the credentials from the Connection Details panel. Do not use your Qwiklabs credentials. If you have your own Google Cloud account, do not use it for this lab (avoids incurring charges).
Click through the subsequent pages:
After a few moments, the Cloud Console opens in this tab.
Cloud Shell is a virtual machine that is loaded with development tools. It offers a persistent 5GB home directory and runs on the Google Cloud. Cloud Shell provides command-line access to your Google Cloud resources.
In the Cloud Console, in the top right toolbar, click the Activate Cloud Shell button.
Click Continue.
It takes a few moments to provision and connect to the environment. When you are connected, you are already authenticated, and the project is set to your PROJECT_ID. For example:
gcloud
is the command-line tool for Google Cloud. It comes pre-installed on Cloud Shell and supports tab-completion.
You can list the active account name with this command:
(Output)
(Example output)
You can list the project ID with this command:
(Output)
(Example output)
Throughout this lab, we will be using the gcloud command line tool to provision our services.
gcloud config set
command—run the following in your cloud shell to set your zone to Now that our zone is set, we will create a new cluster of containers.
hello-world
:This command creates a new cluster with two nodes, or virtual machines. You can configure this command with additional flags to change the number of nodes, the default permissions, and other variables. Learn more from the gcloud container clusters create reference.
Launching the cluster may take a few minutes. Once it's up, you should receive a similar output:
Click Check my progress to verify the objective.
Now that we have our cluster up and running, it's time to integrate it with MongoDB. We will be using a replica set so that our data is highly available and redundant—a must for running production applications.
To get set up, we need to do the following:
StatefulSet
directory with the following command:Once you have verified that the files have been downloaded and that you're in the right directory, let's go ahead and create a Kubernetes StorageClass
.
A StorageClass
tells Kubernetes what kind of storage you want to use for database nodes. On the Google Cloud, you have a couple of storage choices: SSDs and hard disks.
If you take a look inside the StatefulSet
directory (you can do this by running the ls
command), you will see SSD and HDD configuration files for both Azure and Google Cloud.
googlecloud_ssd.yaml
file:Output:
This configuration creates a new StorageClass called "fast" that is backed by SSD volumes.
Now that our StorageClass is configured, our StatefulSet can now request a volume that will automatically be created.
Click Check my progress to verify the objective.
mongo-statefulset.yaml
) where they are both housed in:You should receive the following output (without the pointers to the Headless Service and StatefulSet content):
The first section of mongo-statefulset.yaml
refers to a headless service
. In Kubernetes terms, a service describes policies or rules for accessing specific pods. In brief, a headless service is one that doesn't prescribe load balancing. When combined with StatefulSets, this will give us individual DNSs to access our pods, and in turn a way to connect to all of our MongoDB nodes individually. In the yaml
file, you can make sure that the service is headless by verifying that the clusterIP
field is set to None
.
The StatefulSet configuration is the second section of mongo-statefulset.yaml.
This is the bread and butter of the application: it's the workload that runs MongoDB and what orchestrates your Kubernetes resources. Referencing the yaml
file, we see that the first section describes the StatefulSet object. Then, we move into the Metadata section, where labels and the number of replicas are specified.
Next comes the pod spec. The terminationGracePeriodSeconds
is used to gracefully shutdown the pod when you scale down the number of replicas. Then the configurations for the two containers are shown. The first one runs MongoDB with command line flags that configure the replica set name. It also mounts the persistent storage volume to /data/db
: the location where MongoDB saves its data. The second container runs the sidecar. This sidecar container will configure the MongoDB replica set automatically. As mentioned earlier, a "sidecar" is a helper container that helps the main container run its jobs and tasks.
Finally, there is the volumeClaimTemplates
. This is what talks to the StorageClass we created before to provision the volume. It provisions a 100 GB disk for each MongoDB replica.
Now that we have a basic understanding of what a headless service and StatefulSet are, let's go ahead and deploy them.
mongo-statefulset.yaml
, we can run the following command to run both of them:You should receive the following output:
Click Check my progress to verify the objective.
Now that we have a cluster running and our replica set deployed, let's go ahead and connect to it.
Kubernetes StatefulSets deploys each pod sequentially. It waits for the MongoDB replica set member to fully boot up and create the backing disk before starting the next member.
Output - all three members are up:
At this point, you should have three pods created in your cluster. These correspond to the three nodes in your MongoDB replica set.
Output:
Wait for all three members to be created before moving on.
Connect to the first replica set member:
You now have a REPL
environment connected to the MongoDB.
rs.initiate()
command:rs.conf()
command:This outputs the details for the current member of replica set rs0
. In this lab you see only one member. To get details of all members you need to expose the replica set through additional services like nodeport or load balancer.
REPL
.A big advantage of Kubernetes and StatefulSets is that you can scale the number of MongoDB Replicas up and down with a single command!
In a few minutes, there will be 5 MongoDB pods.
Your output should look like this:
In a few seconds, there are 3 MongoDB pods.
Your output should look like this:
Click Check my progress to verify the objective.
Each pod in a StatefulSet backed by a Headless Service will have a stable DNS name. The template follows this format: <pod-name>.<service-name>
This means the DNS names for the MongoDB replica set are:
You can use these names directly in the connection string URI of your app.
Using a database is outside the scope of this lab, however for this case, the connection string URI would be:
Because you are working in a lab environment, when you end the lab all your resources and your project will be cleaned up and discarded on your behalf. But we want to show you how to clean up resources yourself to save on cost and to be a good cloud citizen when you are in your own environment.
To clean up the deployed resources, run the following commands to delete the StatefulSet, Headless Service, and the provisioned volumes.
Kubernetes Engine provides a powerful and flexible way to run containers on Google Cloud. StatefulSets let you run stateful workloads like databases on Kubernetes. You learned about:
This self-paced lab is part of the Cloud Architecture quest. A quest is a series of related labs that form a learning path. Completing a quest earns you a badge to recognize your achievement. You can make your badge or badges public and link to them in your online resume or social media account. Enroll in any quest that contains this lab and get immediate completion credit. Refer to the Google Cloud Skills Boost catalog for all available quests.
Continue your quest with the next lab, or check out these suggestions:
...helps you make the most of Google Cloud technologies. Our classes include technical skills and best practices to help you get up to speed quickly and continue your learning journey. We offer fundamental to advanced level training, with on-demand, live, and virtual options to suit your busy schedule. Certifications help you validate and prove your skill and expertise in Google Cloud technologies.
Manual Last Updated October 09, 2023
Lab Last Tested October 09, 2023
Copyright 2024 Google LLC All rights reserved. Google and the Google logo are trademarks of Google LLC. All other company and product names may be trademarks of the respective companies with which they are associated.
This content is not currently available
We will notify you via email when it becomes available
Great!
We will contact you via email if it becomes available
One lab at a time
Confirm to end all existing labs and start this one