deployment-patterns
Installation
SKILL.md
Deployment Patterns
Production deployment workflows and CI/CD best practices.
When to Activate
- Setting up CI/CD pipelines
- Planning deployment strategy
- Implementing health checks and readiness probes
- Preparing for a production release
- Configuring environment-specific settings
Deployment Strategies
Rolling (Default)
Replace instances gradually. Old and new run simultaneously.
- Use when: Standard deployments, backward-compatible changes
- Requires: Backward-compatible changes