From aj-geddes-useful-ai-prompts-4
Automates deployments across environments using Helm, Terraform, and ArgoCD. Implements blue-green deployments, canary releases, and rollback strategies.
How this skill is triggered — by the user, by Claude, or both
Slash command
/aj-geddes-useful-ai-prompts-4:deployment-automationThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
- [Overview](#overview)
Establish automated deployment pipelines that safely and reliably move applications across development, staging, and production environments with minimal manual intervention and risk.
Minimal working example:
# helm/Chart.yaml
apiVersion: v2
name: myapp
description: My awesome application
type: application
version: 1.0.0
# helm/values.yaml
replicaCount: 3
image:
repository: ghcr.io/myorg/myapp
pullPolicy: IfNotPresent
tag: "1.0.0"
service:
type: ClusterIP
port: 80
targetPort: 3000
resources:
requests:
memory: "256Mi"
cpu: "250m"
limits:
memory: "512Mi"
cpu: "500m"
autoscaling:
// ... (see reference guides for full implementation)
Detailed implementations in the references/ directory:
| Guide | Contents |
|---|---|
| Helm Deployment Chart | Helm Deployment Chart |
| GitHub Actions Deployment Workflow | GitHub Actions Deployment Workflow |
| ArgoCD Deployment | ArgoCD Deployment |
| Blue-Green Deployment | Blue-Green Deployment |
npx claudepluginhub joshuarweaver/cascade-code-languages-misc-1 --plugin aj-geddes-useful-ai-prompts-4Orchestrates multi-stage deployment pipelines with Kubernetes, CI/CD platforms, and strategies like blue-green, canary, rolling updates across dev/staging/prod.
Orchestrates Harness CD pipelines for Kubernetes, Helm, Terraform, ECS, and serverless deployments with GitOps, approval gates, rollback strategies, and multi-environment promotion.
Designs and implements CI/CD pipelines, GitOps workflows, and zero-downtime deployments using GitHub Actions, ArgoCD, and container security practices.