Cloud Run Deployment Skill

Automate Cloud Run deployments and traffic management for containerized services.

2|1|Updated Jan 31, 2026
One-click install
npx skills add https://github.com/Agentient/vibekit --skill cloud-run-deployment-skill
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Cloud Run Deployment Skill
Source: https://github.com/Agentient/vibekit/tree/main/skills/agentient-devops-gcp/skills/cloud-run-deployment
Command: npx skills add https://github.com/Agentient/vibekit --skill cloud-run-deployment-skill

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Cloud Run deployments can be error-prone and time-consuming when handling multiple release strategies, health checks, and traffic routing. This skill automates containerized service deployment and traffic management on Google Cloud Run, reducing manual steps and risk.

Core Features & Use Cases

  • Basic deployment of a container image to Cloud Run with region and service account configuration.
  • Blue-green and canary deployment patterns with safe validation and traffic shifts.
  • Enforced health checks and startup probes via service.yaml/configuration, plus automated rollback on failure.

Quick Start

Deploy a sample service image to Cloud Run in a chosen region and verify the health endpoint responds.

Frequently Asked Questions about Cloud Run Deployment Skill

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I deploy a containerized service to Google Cloud Run with health checks?

To deploy a containerized service to Cloud Run, you configure the service.yaml with required health checks and startup probes, then apply minimum and maximum instance settings. The deployment validates endpoints and rolls back safely if failures occur.

What is the best way to configure blue-green deployments on Cloud Run?

Blue-green deployments on Cloud Run are configured by deploying a new revision and shifting 100% traffic to it after validation. The skill automates this traffic routing, enforcing startup probes and safe rollback procedures if the new revision fails health checks.

How do I set concurrency and scaling limits for a Cloud Run service?

Concurrency and scaling limits for a Cloud Run service are set within the service configuration. You define minimum and maximum instance settings alongside concurrency tuning parameters to control how the service scales under varying traffic loads.

Does Cloud Run deployment support automated rollback when a new revision fails?

Cloud Run deployment supports automated rollback when a new revision fails. By enforcing health checks and startup probes in the service configuration, the deployment process detects failures and executes safe rollback procedures with clear validation guardrails.