0
0
GCPcloud~5 mins

Cloud Run service concept in GCP - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What is a Cloud Run service?
A Cloud Run service is a way to run your app or code in the cloud without managing servers. It automatically handles scaling and lets your app respond to web requests.
Click to reveal answer
beginner
How does Cloud Run handle scaling?
Cloud Run automatically adds or removes instances of your app based on how many requests it gets. If no one uses it, it can scale down to zero, saving resources.
Click to reveal answer
beginner
What is the role of a container in Cloud Run?
Your app runs inside a container, which is like a small package with everything your app needs. Cloud Run runs this container to serve your app.
Click to reveal answer
intermediate
Can Cloud Run services be accessed publicly by default?
No, Cloud Run services are private by default. You can choose to allow public access or restrict it to certain users or networks.
Click to reveal answer
beginner
What triggers a Cloud Run service to start running?
A Cloud Run service starts running when it receives a web request. It wakes up the container to handle the request and then can scale down when done.
Click to reveal answer
What does Cloud Run automatically manage for you?
AServer provisioning and scaling
BWriting application code
CDatabase management
DNetwork hardware setup
What format must your app be packaged in to deploy on Cloud Run?
AVirtual machine image
BExecutable binary
CContainer image
DZIP archive
What happens when no requests are sent to a Cloud Run service?
AIt keeps running at full capacity
BIt scales down to zero instances
CIt crashes
DIt sends an error message
Which of these is NOT a feature of Cloud Run?
AManual server setup
BManaged server infrastructure
CAutomatic scaling
DContainer-based deployment
How do users typically interact with a Cloud Run service?
AVia email
BBy logging into a server
CUsing FTP
DThrough web requests
Explain what a Cloud Run service is and how it manages your app's availability.
Think about how your app wakes up only when needed.
You got /4 concepts.
    Describe the role of containers in Cloud Run and why they are important.
    Containers are like boxes holding your app and its tools.
    You got /4 concepts.