Zero-downtime deployment strategy with instant rollback capability. Use when: planning production deployments, implementing blue-green infrastructure, or setting up traffic switching.
Instalación
Instalar con Codex o Claude Copia este prompt, pégalo en Codex, Claude u otro asistente, y deja que revise la página de la skill y la instale por ti.
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.