File contents Deployment Automation
Table of Contents
Overview
Establish automated deployment pipelines that safely and reliably move applications across development, staging, and production environments with minimal manual intervention and risk.
When to Use
Continuous deployment to Kubernetes
Infrastructure as Code deployment
Multi-environment promotion
Blue-green deployment strategies
Canary release management
Infrastructure provisioning
Automated rollback procedures
Quick Start
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)
Reference Guides
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
Best Practices
✅ DO
Use Infrastructure as Code (Terraform, Helm)
Implement GitOps workflows
Use blue-green deployments
Implement canary releases
Automate rollback procedures
Test deployments in staging first
Use feature flags for gradual rollout
Monitor deployment health
Document deployment procedures
Implement approval gates for production
Version infrastructure code
Use environment parity
❌ DON'T
Deploy directly to production
Skip testing in staging
Use manual deployment scripts
Deploy without rollback plan
Ignore health checks
Use hardcoded configuration
Deploy during critical hours
Skip pre-deployment validation
Forget to backup before deploy
Deploy from local machines
Converted and distributed by TomeVault — claim your Tome and manage your conversions.
1 --- 2 name: aj-geddes-useful-ai-prompts-deployment-automation 3 description: Deployment Automation 4 --- 5 6 # Deployment Automation 7 8 ## Table of Contents 9 10 - [Overview](#overview) 11 - [When to Use](#when-to-use) 12 - [Quick Start](#quick-start) 13 - [Reference Guides](#reference-guides) 14 - [Best Practices](#best-practices) 15 16 ## Overview 17 18 Establish automated deployment pipelines that safely and reliably move applications across development, staging, and production environments with minimal manual intervention and risk. 19 20 ## When to Use 21 22 - Continuous deployment to Kubernetes 23 - Infrastructure as Code deployment 24 - Multi-environment promotion 25 - Blue-green deployment strategies 26 - Canary release management 27 - Infrastructure provisioning 28 - Automated rollback procedures 29 30 ## Quick Start 31 32 Minimal working example: 33 34 ```yaml 35 # helm/Chart.yaml 36 apiVersion: v2 37 name: myapp 38 description: My awesome application 39 type: application 40 version: 1.0.0 41 42 # helm/values.yaml 43 replicaCount: 3 44 image: 45 repository: ghcr.io/myorg/myapp 46 pullPolicy: IfNotPresent 47 tag: "1.0.0" 48 service: 49 type: ClusterIP 50 port: 80 51 targetPort: 3000 52 resources: 53 requests: 54 memory: "256Mi" 55 cpu: "250m" 56 limits: 57 memory: "512Mi" 58 cpu: "500m" 59 autoscaling: 60 // ... (see reference guides for full implementation) 61 ``` 62 63 ## Reference Guides 64 65 Detailed implementations in the `references/` directory: 66 67 | Guide | Contents | 68 |---|---| 69 | [Helm Deployment Chart](references/helm-deployment-chart.md) | Helm Deployment Chart | 70 | [GitHub Actions Deployment Workflow](references/github-actions-deployment-workflow.md) | GitHub Actions Deployment Workflow | 71 | [ArgoCD Deployment](references/argocd-deployment.md) | ArgoCD Deployment | 72 | [Blue-Green Deployment](references/blue-green-deployment.md) | Blue-Green Deployment | 73 74 ## Best Practices 75 76 ### ✅ DO 77 78 - Use Infrastructure as Code (Terraform, Helm) 79 - Implement GitOps workflows 80 - Use blue-green deployments 81 - Implement canary releases 82 - Automate rollback procedures 83 - Test deployments in staging first 84 - Use feature flags for gradual rollout 85 - Monitor deployment health 86 - Document deployment procedures 87 - Implement approval gates for production 88 - Version infrastructure code 89 - Use environment parity 90 91 ### ❌ DON'T 92 93 - Deploy directly to production 94 - Skip testing in staging 95 - Use manual deployment scripts 96 - Deploy without rollback plan 97 - Ignore health checks 98 - Use hardcoded configuration 99 - Deploy during critical hours 100 - Skip pre-deployment validation 101 - Forget to backup before deploy 102 - Deploy from local machines 103 104 --- 105 > Converted and distributed by [TomeVault](https://tomevault.io/claim/aj-geddes) — claim your Tome and manage your conversions. 106 <!-- tomevault:4.0:skill_md:2026-04-11 -->
tomevault-io/skills-registry/tree/main/aj-geddes--useful-ai-prompts--deployment-automation commit 8979d0009d
Frequently asked questions How do I install the Aj Geddes Useful AI Prompts Deployment Automation skill? Run npx skillmds@latest add tomevault-io/aj-geddes-useful-ai-prompts-deployment-automation in your terminal (requires Node.js), paste this page's agent-chat prompt into Claude, Cursor, or any MCP-connected agent, or download the SKILL.md file and copy it into your agent's skills directory.
What does the Aj Geddes Useful AI Prompts Deployment Automation skill do? Deployment Automation It is listed under Coding & Dev Tools on SkillMD.
Is Aj Geddes Useful AI Prompts Deployment Automation safe to use? This skill has not completed SkillMD's automated safety review yet. Independent scanners report: SkillSpector: PASS, Skill Scanner: PASS. SkillMD never runs a skill's scripts for you; review the SKILL.md before installing.
Which AI agents work with Aj Geddes Useful AI Prompts Deployment Automation? This skill is tagged as working with Claude Code, Claude.ai, OpenAI Codex. SKILL.md is an open format, so most agents that read a skills directory can load it too.
Is Aj Geddes Useful AI Prompts Deployment Automation free to use? Yes. Installing skills from SkillMD is free, and the skill stays under its author's original license.
Who published Aj Geddes Useful AI Prompts Deployment Automation? tomevault-io (@tomevault-io) published this skill. Their other Agent Skills are listed on their SkillMD profile.