Initial commit

This commit is contained in:
Zhongwei Li
2025-11-29 18:14:27 +08:00
commit 4a990f643e
8 changed files with 262 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
---
description: Automated application deployment with blue-green strategies, rollback capability, and comprehensive monitoring
version: 1.0.0
---
# Application Deployment Command
Expert deployment orchestration with zero-downtime strategies, automated rollback, health monitoring, and production readiness validation.
## Deployment Strategies
### Blue-Green Deployment
Deploy to inactive environment, run health checks, switch traffic atomically, keep previous version for instant rollback.
### Canary Deployment
Deploy to small subset, monitor metrics, gradually increase traffic, rollback if anomalies detected.
### Rolling Deployment
Update servers in batches, maintain availability, monitor health, pause or rollback on failures.
## Infrastructure as Code
Terraform, Kubernetes, Helm, CloudFormation for repeatable deployments.
## Success Criteria
Safe, reliable, zero-downtime deployment with instant rollback capability.