Overview
forge-deploy is a zero-downtime container orchestration tool without vendor lock-in. It supports blue/green and canary deployment strategies with GitOps integration on bare metal or any cloud provider.
Quick Start
# Install
curl -sSL https://forge-deploy.io/install.sh | sh
# Deploy application
forge deploy --app myapp --image myapp:v2 --strategy blue-green
Features
- Zero-downtime deployments
- Blue/green and canary strategies
- GitOps workflow integration
- Multi-cloud and bare metal support
- Automatic rollback on failure
- Health check monitoring
- Resource limits and autoscaling
Deployment Strategies
Blue/Green: Deploy new version alongside old, switch traffic instantly.
Canary: Gradually shift traffic to new version (10% → 50% → 100%).
Rolling: Replace instances one by one with zero downtime.