Cloud Run Functions: 3 Ways: Challenge Lab - ARC104

A passionate full-stack developer from @ePlus.DEV
Search for a command to run...

A passionate full-stack developer from @ePlus.DEV
No comments yet. Be the first to comment.
Quick and practical tips to help users optimize tasks, improve skills, and solve common problems effectively across various areas like tech, lifestyle, productivity, and more.
Một bản tin giúp Developer cập nhật nhanh AI, Cloud, Open Source và những công nghệ đáng chú ý trong ngày. 📌 Executive Summary OpenAI thay đổi thời điểm tính phí seat mới của ChatGPT Business từ n

Overview Dataplex is an intelligent data fabric that enables organizations to centrally discover, manage, monitor, and govern their data across data lakes, data warehouses, and data marts to power ana

Daily Tech Brief — 06/08/2026 Một bản tin giúp Developer cập nhật nhanh AI, Cloud, Open Source và những công nghệ đáng chú ý trong ngày. 📌 Executive Summary Claude Code 2.1.223 vá nhiều đường обх

Overview In a challenge lab you’re given a scenario and a set of tasks. Instead of following step-by-step instructions, you will use the skills learned from the labs in the course to figure out how to

🏕️ Arcade Base Camp August 2026 Welcome to Arcade Base Camp August 2026, where you’ll develop key Google Cloud skills and earn an exclusive credential that will open doors to the cloud for you. No pr

In a challenge lab you’re given a scenario and a set of tasks. Instead of following step-by-step instructions, you will use the skills learned from the labs in the course to figure out how to complete the tasks on your own! An automated scoring system (shown on this page) will provide feedback on whether you have completed your tasks correctly.
When you take a challenge lab, you will not be taught new Google Cloud concepts. You are expected to extend your learned skills, like changing default values and reading and researching error messages to fix your own mistakes.
To score 100% you must successfully complete all tasks within the time period!
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 are made available to you.
This hands-on lab lets you do the lab activities in a real cloud environment, not in a simulation or demo environment. It does so by giving you new, temporary credentials you use to sign in and access Google Cloud for the duration of the lab.
To complete this lab, you need:
Note: Use an Incognito (recommended) or private browser window to run this lab. This prevents conflicts between your personal account and the student account, which may cause extra charges incurred to your personal account.
Note: Use only the student account for this lab. If you use a different Google Cloud account, you may incur charges to that account.
You are just starting your junior cloud developer role. So far you have been helping teams create and manage Cloud Run functions that respond to and get triggered by specific events in their Google Cloud projects.
You are expected to have the skills and knowledge for these tasks.
You are asked to help a newly formed development team with some of their initial work on a new project. Specifically, they need to automate running code based on specific activities in their Google Cloud project including HTTP requests and new events in Cloud Storage; you receive the following request to complete the following tasks:
Create a bucket to upload new project files.
Create, deploy, and test a Cloud Storage function that logs new activities in the Cloud Storage bucket.
Create and deploy a function that responds to HTTP requests with minimum instances to limit cold starts.
Some standards you should follow:
Ensure that any needed APIs (such as Cloud Run functions) are successfully enabled.
Ensure that any needed IAM permissions (such as for the Cloud Storage service account) are assigned.
Create all resources in the us-east4 region, unless otherwise directed.
Each task is detailed below, good luck!
us-east4 using your Project ID as the bucket name: qwiklabs-gcp-04-a59145c06193Click Check my progress to verify the objective.
Create a Cloud Storage bucket qwiklabs-gcp-04-a59145c06193
Create and deploy a Cloud Function called cs-logger that executes every time a new event occurs in the bucket called qwiklabs-gcp-04-a59145c06193 you created in task 1. The function is written in Node.js 20.
Set the Region to us-east4, and set the Entry point (Function to execute) to your function name.
Deploy the function with 2 maximum instances.
Use the following code blocks for the index.js and package.json:
index.js (replace eventStorage with your function name):
const functions = require('@google-cloud/functions-framework');
functions.cloudEvent('eventStorage', (cloudevent) => {
console.log('A new event in your Cloud Storage bucket has been logged!');
console.log(cloudevent);
});
package.json:
{
"name": "nodejs-functions-gen2-codelab",
"version": "0.0.1",
"main": "index.js",
"dependencies": {
"@google-cloud/functions-framework": "^2.0.0"
}
}
Note: If you get permissions error, please wait a few minutes and try the deployment again. It takes a few minutes for the APIs to be enabled.
Click Check my progress to verify the objective.
Create a Cloud Storage function cs-logger
Create and deploy a HTTP function called http-responder that responds to HTTP requests. The function is written in Node.js 20.
Set the Region to us-east4, and set the Entry point (Function to execute) to your function name.
Deploy the function with 1 minimum instance and 2 maximum instances.
Use the following code blocks for the index.js and package.json:
index.js (replace helloWorld with your function name):
const functions = require('@google-cloud/functions-framework');
functions.http('helloWorld', (req, res) => {
res.status(200).send('HTTP function (2nd gen) has been called!');
});
package.json:
{
"name": "nodejs-functions-gen2-codelab",
"version": "0.0.1",
"main": "index.js",
"dependencies": {
"@google-cloud/functions-framework": "^2.0.0"
}
}
Click Check my progress to verify the objective.
Create a HTTP function http-responder
Note: If you get permissions error, please wait a few minutes and try the deployment again. It takes a few minutes for the APIs to be enabled.
curl -LO raw.githubusercontent.com/ePlus-DEV/storage/refs/heads/main/labs/ARC104/lab.sh
source lab.sh
https://eplus.dev/build-serverless-applications-with-cloud-run-functions-challenge-lab-arc104