What problem does it solve? Releasing new application versions risks downtime and slow rollbacks when deployments update live environments in place. This Skill provides the configuration and scripts to run two parallel production environments, validate the new version before it receives traffic, and revert in seconds if health checks fail. ## Core Features & Use Cases - Kubernetes Blue-Green Setup: Generates paired blue/green Deployments with readiness and liveness probes, plus a Service whose selector performs the atomic traffic switch. - AWS ALB Traffic Switching: Provides a Python script using boto3 to wait for healthy targets, modify listener rules, monitor post-switch health, and auto-rollback on failures. - Database Migration Guidance: Defines backward-compatible migration patterns (additive changes, multi-phase renames) so both slots run safely during the switch window. - Use Case: A team releasing version 1.5.0 of an API deploys it to the green slot, runs smoke tests against pod IPs, patches the Service selector to green, monitors error rates for 30 minutes, and keeps blue running for instant rollback. ## Quick Start Ask the AI to generate a blue-green deployment setup for your Kubernetes service, including the traffic switch script and rollback procedure.