Zero-downtime deployment strategy with instant rollback capability. Use when: planning production deployments, implementing blue-green infrastructure, or setting up traffic switching.
설치
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
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.