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.