
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
You have recently been hired as a cloud developer by an IT enterprise using Google Cloud as its principal Cloud Services Provider (CSP). You were instructed to build serverless, stateless web applications in the cloud. So you need to adopt the Cloud Run service offered by Google Cloud. Some of your concerns are:
Since you worked with AWS at your previous employer, you know that AWS Fargate provisions containerized environments serverlessly. AWS Fargate handles the task of launching, scaling, and monitoring the containers, making it easier for developers to focus on their application code to easily deploy, manage, and scale containerized applications. Also, AWS Fargate allows you to deploy containers for Amazon Elastic Container Service (Amazon ECS) or Amazon Elastic Kubernetes Service (Amazon EKS). This means that developers can choose the orchestration option that best fits their needs.
A serverless containerized application based on AWS Fargate looks like the following diagram:
Now you will explore how you will deploy applications on Google Cloud.
Cloud Run is a managed compute platform that enables you to run stateless containers that are invocable via HTTP requests. Cloud Run is serverless: it abstracts away all infrastructure management, so you can focus on what matters most — building great applications.
Cloud Run is built from Knative, letting you choose to run your containers either fully managed with Cloud Run, or in your Google Kubernetes Engine cluster with Cloud Run on GKE.
The goal of this lab is for you to build a simple containerized application image and deploy it to Cloud Run.
In this lab, you learn to:
For each lab, you get a new Google Cloud project and set of resources for a fixed time at no cost.
Sign in to Qwiklabs using an incognito window.
Note the lab's access time (for example, 1:15:00
), and make sure you can finish within that time.
There is no pause feature. You can restart if needed, but you have to start at the beginning.
When ready, click Start lab.
Note your lab credentials (Username and Password). You will use them to sign in to the Google Cloud Console.
Click Open Google Console.
Click Use another account and copy/paste credentials for this lab into the prompts.
If you use other credentials, you'll receive errors or incur charges.
Accept the terms and skip the recovery resource page.
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 Choose an account page.
On the Choose an account page, click Use Another Account. The Sign in page opens.
Paste the username that you copied from the Connection Details panel. Then copy and paste the password.
After a few moments, the Cloud console opens in this tab.
Google 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.
Google Cloud Shell provides command-line access to your Google Cloud resources.
In Cloud console, on the top right toolbar, click the Open 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.
Output:
Example output:
Output:
Example output:
Below you will find a reference list of a few very basic Linux commands which may be included in the instructions or code blocks for this lab.
Command --> | Action | . | Command --> | Action |
---|---|---|---|---|
mkdir (make directory) | create a new folder | . | cd (change directory) | change location to another folder |
ls (list ) | list files and folders in the directory | . | cat (concatenate) | read contents of a file without using an editor |
apt-get update | update package manager library | . | ping | signal to test reachability of a host |
mv (move ) | moves a file | . | cp (copy) | makes a file copy |
pwd (present working directory ) | returns your current location | . | sudo (super user do) | gives higher administration privileges |
In this task, you will build a simple express-based NodeJS application which responds to HTTP requests.
helloworld
, then move your view into that directory:Next you'll be creating and editing files. To edit files, use vi
, emac
, nano
or the Cloud Shell Code Editor by clicking on the Open Editor button in Cloud Shell.
Create a package.json
file, then add the following content to it:
Most importantly, the file above contains a start script command and a dependency on the Express web application framework.
Press CTRL+X, then Y to save the package.json
file.
Next, in the same directory, create a index.js
file, and copy the following lines into it:
This code creates a basic web server that listens on the port defined by the PORT
environment variable. Your app is now finished and ready to be containerized and uploaded to Container Registry.
index.js
file.Dockerfile
in the same directory as the source files, and add the following content:Press CTRL+X, then Y to save the Dockerfile
file.
Now, build your container image using Cloud Build by running the following command from the directory containing the Dockerfile.
(Note the $GOOGLE_CLOUD_PROJECT environmental variable in the command, which contains your lab's Project ID):
Cloud Build is a service that executes your builds on GCP. It executes a series of build steps, where each build step is run in a Docker container to produce your application container (or other artifacts) and push it to Cloud Registry, all in one command.
Once pushed to the registry, you will see a SUCCESS message containing the image name (gcr.io/[PROJECT-ID]/helloworld
). The image is stored in Artifact Registry and can be re-used if desired.
docker
command:This should open a browser window showing the "Hello World!" message. You could also simply use curl localhost:8080
.
docker
command cannot pull the remote container image then try running this: gcloud auth configure-docker
The allow-unauthenticated flag in the command above makes your service publicly accessible.
service name
by pressing Enter.Wait a few moments until the deployment is complete.
On success, the command line displays the service URL:
You can now visit your deployed container by opening the service URL in any browser window.
Congratulations! You have just deployed an application packaged in a container image to Cloud Run. Cloud Run automatically and horizontally scales your container image to handle the received requests, then scales down when demand decreases. In your own environment, you only pay for the CPU, memory, and networking consumed during request handling.
For this lab you used the gcloud
command-line. Cloud Run is also available via Cloud Console.
helloworld
service listed:While Cloud Run does not charge when the service is not in use, you might still be charged for storing the built container image.
helloworld
image using this command :When prompted to continue type Y
, and press Enter.
To delete the Cloud Run service, use this command :
Y
, and press Enter.You have completed this lab!
Google Cloud Run and AWS Fargate are both serverless computing services that allow developers to run containerized applications in a scalable and cost-effective way. However, there are some differences between these two services.
Here are some of the key similarities and differences:
Similarities:
Differences:
When you have completed your lab, click End Lab. Google Cloud Skills Boost removes the resources you’ve used and cleans the account for you.
You will be given an opportunity to rate the lab experience. Select the applicable number of stars, type a comment, and then click Submit.
The number of stars indicates the following:
You can close the dialog box if you don't want to provide feedback.
For feedback, suggestions, or corrections, please use the Support tab.
Copyright 2022 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.
Ta treść jest obecnie niedostępna
Kiedy dostępność się zmieni, wyślemy Ci e-maila z powiadomieniem
Świetnie
Kiedy dostępność się zmieni, skontaktujemy się z Tobą e-mailem
One lab at a time
Confirm to end all existing labs and start this one