Generate deployment configurations (Docker, Kubernetes) for the current project
Generate production-ready Docker, Kubernetes, or Docker Compose configurations for your project. Use this to quickly containerize applications with best practices like multi-stage builds, health checks, and resource limits.
/plugin marketplace add jmagly/ai-writing-guide/plugin install jmagly-utils-plugins-utils@jmagly/ai-writing-guideGenerate production-ready deployment configurations based on project analysis.
REF-001: BP-8 - Containerized Deployment
"Production-grade agentic workflows require containerized deployment with proper isolation, resource management, and orchestration."
/deploy-gen docker [options]
/deploy-gen k8s [options]
/deploy-gen compose [options]
| Argument | Required | Description |
|---|---|---|
| type | Yes | Deployment type: docker, k8s, compose |
| Option | Default | Description |
|---|---|---|
| --output | ./deploy/ | Output directory for generated files |
| --app-name | (from package.json) | Application name |
| --port | 3000 | Application port |
| --multi-stage | true | Use multi-stage Dockerfile |
| --health-check | true | Include health check endpoints |
Detect project characteristics:
Analyzing project...
- Runtime: [node/python/go/java]
- Package manager: [npm/yarn/pip/go mod]
- Entry point: [detected or ask]
- Dependencies: [count]
- Build required: [yes/no]
Choose appropriate templates based on analysis:
| Runtime | Template |
|---|---|
| Node.js | templates/deploy/docker/node.Dockerfile |
| Python | templates/deploy/docker/python.Dockerfile |
| Go | templates/deploy/docker/go.Dockerfile |
Generate deployment files with project-specific values.
deploy/
├── Dockerfile # Multi-stage build
├── .dockerignore # Exclude dev files
└── docker-build.sh # Build helper script
deploy/k8s/
├── deployment.yaml # Pod specification
├── service.yaml # Service exposure
├── configmap.yaml # Environment configuration
├── hpa.yaml # Horizontal Pod Autoscaler
└── kustomization.yaml # Kustomize base
deploy/
├── docker-compose.yml # Service definition
├── docker-compose.dev.yml # Development overrides
└── .env.example # Environment template
# Generate Dockerfile for Node.js project
/deploy-gen docker
# Generate full Kubernetes manifests
/deploy-gen k8s --app-name my-api --port 8080
# Generate Docker Compose for local development
/deploy-gen compose --output ./
# Generate all deployment types
/deploy-gen docker && /deploy-gen k8s && /deploy-gen compose
Templates use these variables:
| Variable | Source |
|---|---|
{{APP_NAME}} | --app-name or package.json |
{{PORT}} | --port option |
{{NODE_VERSION}} | .nvmrc or latest LTS |
{{PYTHON_VERSION}} | .python-version or 3.11 |
{{ENTRY_POINT}} | Detected from project |
aiwg deploy-gen <type> [options]
/project-health-check - Analyze project before deployment/security-audit - Security review before production/flow-deploy-to-production - Full deployment workflowFrom Unified Plan:
| Metric | Target |
|---|---|
| Zero to containerized | <2 minutes |
| Generated configs | Production-ready |
| Security baseline | Non-root, minimal image |
Generate deployment for: $ARGUMENTS