GCP Cloud Run Overview Google Cloud Run is a fully managed serverless platform for running containers. It automatically scales from zero to thousands of instances, charges only for actual usage, and supports any language or binary that can run in a container. Instructions Core Concepts - Service — a long-running container that auto-scales based on HTTP traffic - Revision — an immutable snapshot of a service's configuration and code - Traffic splitting — route percentages of traffic to different revisions - Job — run a container to completion (batch, cron, one-off tasks) - Worker pool — always…