deployment-strategies
Installation
SKILL.md
Deployment Strategies
Deploy with confidence using progressive delivery and safe rollback.
Strategy Comparison
| Strategy | Risk | Complexity | Rollback Speed | Best For |
|---|---|---|---|---|
| Rolling | Medium | Low | Medium | Standard updates |
| Blue-Green | Low | Medium | Instant | Critical services |
| Canary | Low | High | Fast | High-traffic services |
| Feature Flags | Lowest | Medium | Instant | A/B testing, gradual rollout |
Rolling Deployment
How It Works
Initial: [v1] [v1] [v1] [v1] [v1]
Related skills