blue-green-deployment-specialist

Plan and execute blue-green deployments on Cloud Run and Kubernetes.

Updated Aug 23, 2026
One-click install
npx skills add https://github.com/Whaleylaw/llm-lawyer --skill blue-green-deployment-specialist
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: blue-green-deployment-specialist
Source: https://github.com/Whaleylaw/llm-lawyer/tree/main/.claude/skills/blue-green-deployment-specialist
Command: npx skills add https://github.com/Whaleylaw/llm-lawyer --skill blue-green-deployment-specialist

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Blue-green deployment patterns help teams achieve zero-downtime releases by enabling two parallel environments and instant rollback capabilities during production updates.

Core Features & Use Cases

  • Plan and implement blue-green deployment strategies to minimize risk during releases.
  • Set up blue/green environments on cloud platforms like Cloud Run and Kubernetes.
  • Perform canary rollouts with gradual traffic shifts and automated rollback checks.

Quick Start

Deploy a new blue-green revision with zero traffic, then gradually shift traffic to the green version while monitoring health and keeping the blue version available for rollback.

Frequently Asked Questions about blue-green-deployment-specialist

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

FAQPage Schema
How do I achieve zero-downtime deployment on Kubernetes?

Zero-downtime deployment on Kubernetes is achieved by running parallel blue and green environments, routing traffic to the new version only after health checks pass, and keeping the old version for instant rollback.

What is the best way to set up blue-green deployment for cloud platforms?

Blue-green deployment for cloud platforms like Cloud Run and Kubernetes involves deploying a new revision with zero traffic, gradually shifting traffic to it, and automating rollback if monitoring detects failures.

Can I use canary rollouts with gradual traffic shifts in Cloud Run?

Yes, canary rollouts in Cloud Run are supported by deploying a new revision with zero traffic, then gradually shifting traffic to the green version while monitoring health and keeping the blue version for rollback.

What is the difference between blue-green deployment and canary rollouts?

Blue-green deployment switches traffic between two parallel environments for instant rollback, while canary rollouts perform gradual traffic shifts to a new version, using automated checks to validate health before completion.

How do I automate rollbacks during a traffic shift if health checks fail?

Automated rollback during a traffic shift is configured by continuously monitoring health checks on the new version and automatically rerouting traffic back to the stable blue environment if failures are detected.