Zero-downtime deployment strategy with instant rollback capability. Use when: planning production deployments, implementing blue-green infrastructure, or setting up traffic switching.
Installation
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Zero-downtime deployment strategy with instant rollback capability. Use when: planning production deployments, implementing blue-green infrastructure, or setting up traffic switching.
Blue-Green Deployment
Zero-downtime deployment strategy using two identical environments.
# Instant rollback to green
kubectl rollout undo deployment/app-green
# OR for load balancer switch
aws elbv2 modify-listener --weights TargetGroupArn=green
For Supabase
Supabase doesn't support traditional blue-green. Use feature flags instead.