DevOps Engineering — Quick Reference
This skill equips Claude with actionable templates, checklists, and patterns for building self-service platforms, automating infrastructure with GitOps, deploying securely with DevSecOps, scaling with Kubernetes, ensuring reliability through SRE practices, and operating production systems with AI-driven observability.
Modern Best Practices (December 2025): Kubernetes 1.34 (in-place Pod resource updates GA, 1.35 releasing Dec 17), Docker 27 with BuildKit optimizations, Terraform 1.9+ with improved provider ecosystem, ArgoCD 2.14/FluxCD 2.5 GitOps patterns, eBPF-based observability (Cilium, Hubble), and AI-driven AIOps for incident correlation.
Quick Reference
| Task |
Tool/Framework |
Command |
When to Use |
| Infrastructure as Code |
Terraform 1.9+ |
terraform plan && terraform apply |
Provision cloud resources declaratively |
| GitOps Deployment |
ArgoCD / FluxCD |
argocd app sync myapp |
Continuous reconciliation, declarative deployments |
| Container Build |
Docker 27+ |
docker build -t app:v1 . |
Package applications with dependencies |
| Kubernetes Deployment |
kubectl / Helm (K8s 1.34+) |
kubectl apply -f deploy.yaml / helm upgrade app ./chart |
Deploy to K8s cluster, manage releases |
| CI/CD Pipeline |
GitHub Actions |
Define workflow in .github/workflows/ci.yml |
Automated testing, building, deploying |
| Security Scanning |
Trivy / Falco |
trivy image myapp:latest |
Vulnerability scanning, runtime security |
| Monitoring & Alerts |
Prometheus + Grafana |
Configure ServiceMonitor and AlertManager |
Observability, SLO tracking, incident alerts |
| Load Testing |
k6 / Locust |
k6 run load-test.js |
Performance validation, capacity planning |
| Incident Response |
PagerDuty / Opsgenie |
Configure escalation policies |
On-call management, automated escalation |
| Platform Engineering |
Backstage / Port |
Deploy internal developer portal |
Self-service infrastructure, golden paths |
Decision Tree: Choosing DevOps Approach
What do you need to accomplish?
├─ Infrastructure provisioning?
│ ├─ Cloud-agnostic → Terraform (multi-cloud support)
│ ├─ AWS-specific → CloudFormation or Terraform
│ ├─ GCP-specific → Deployment Manager or Terraform
│ └─ Azure-specific → ARM templates or Terraform
│
├─ Application deployment?
│ ├─ Kubernetes cluster?
│ │ ├─ Simple deploy → kubectl apply -f manifests/
│ │ ├─ Complex app → Helm charts
│ │ └─ GitOps workflow → ArgoCD or FluxCD
│ └─ Serverless?
│ ├─ AWS → Lambda + SAM/Serverless Framework
│ ├─ GCP → Cloud Functions
│ └─ Azure → Azure Functions
│
├─ CI/CD pipeline setup?
│ ├─ GitHub-based → GitHub Actions (template-github-actions.md)
│ ├─ GitLab-based → GitLab CI
│ ├─ Enterprise → Jenkins or Tekton
│ └─ Security-first → Add SAST/DAST/SCA scans (template-ci-cd.md)
│
├─ Observability & monitoring?
│ ├─ Metrics → Prometheus + Grafana
│ ├─ Distributed tracing → Jaeger or OpenTelemetry
│ ├─ Logs → Loki or ELK stack
│ ├─ eBPF-based → Cilium + Hubble (sidecarless)
│ └─ Unified platform → Datadog or New Relic
│
├─ Incident management?
│ ├─ On-call rotation → PagerDuty or Opsgenie
│ ├─ Postmortem → template-postmortem.md
│ └─ Communication → template-incident-comm.md
│
├─ Platform engineering?
│ ├─ Self-service → Backstage or Port (internal developer portal)
│ ├─ Policy enforcement → OPA/Gatekeeper
│ └─ Golden paths → Template repositories + automation
│
└─ Security hardening?
├─ Container scanning → Trivy or Grype
├─ Runtime security → Falco or Sysdig
├─ Secrets management → HashiCorp Vault or cloud-native KMS
└─ Compliance → CIS Benchmarks, template-security-hardening.md
When to Use This Skill
Claude should invoke this skill when users request:
- Platform engineering patterns (self-service developer platforms, internal tools)
- GitOps workflows (ArgoCD, FluxCD, declarative infrastructure management)
- Infrastructure as Code patterns (Terraform, K8s manifests, policy as code)
- CI/CD pipelines with DevSecOps (GitHub Actions, security scanning, SAST/DAST/SCA)
- SRE incident management, AI-driven alerting, escalation, or postmortem templates
- eBPF-based observability (Cilium, Hubble, kernel-level insights, OpenTelemetry)
- Kubernetes operational patterns (day-2 operations, resource management, workload placement)
- Cloud-native monitoring (Prometheus, Grafana, unified observability platforms)
- Team workflow, communication, handover guides, and runbooks
Resources (Best Practices Guides)
Operational best practices by domain:
- DevOps/SRE Operations: resources/devops-best-practices.md - Core patterns for safe infrastructure changes, deployments, and incident response
- Platform Engineering: resources/platform-engineering-patterns.md - Self-service platforms, golden paths, internal developer portals, policy as code
- GitOps Workflows: resources/gitops-workflows.md - Continuous reconciliation, multi-environment promotion, ArgoCD/FluxCD patterns, progressive delivery
- SRE Incident Management: resources/sre-incident-management.md - Severity classification, escalation procedures, blameless postmortems, AI-driven correlation
- Operational Standards: resources/operational-patterns.md - Platform engineering blueprints, CI/CD safety, SLOs, and reliability drills
Each guide includes:
- Checklists for completeness and safety
- Common anti-patterns and remediations
- Step-by-step patterns for safe rollout, rollback, and verification
- Decision matrices (e.g., deployment, escalation, monitoring strategy)
- Real-world examples and edge case handling
Templates (Copy-Paste Ready)
Production templates organized by tech stack (27 templates total):
AWS Cloud
- templates/aws/template-aws-ops.md - AWS service operations and best practices
- templates/aws/template-aws-terraform.md - Terraform modules for AWS infrastructure
- templates/aws/template-cost-optimization.md - AWS cost optimization strategies
GCP Cloud
- templates/gcp/template-gcp-ops.md - GCP service operations
- templates/gcp/template-gcp-terraform.md - Terraform modules for GCP
Azure Cloud
- templates/azure/template-azure-ops.md - Azure service operations
Kubernetes
- templates/kubernetes/template-kubernetes-ops.md - Day-to-day K8s operations
- templates/kubernetes/template-ha-dr.md - High availability and disaster recovery
- templates/kubernetes/template-platform-api.md - Platform API patterns
- templates/kubernetes/template-k8s-deploy.yaml - Deployment manifests
Docker
- templates/docker/template-docker-ops.md - Container build, security, and operations
Kafka
- templates/kafka/template-kafka-ops.md - Kafka cluster operations and streaming
Terraform & IaC
- templates/terraform-iac/template-iac-terraform.md - Infrastructure as Code patterns
- templates/terraform-iac/template-module.md - Reusable Terraform modules
- templates/terraform-iac/template-env-promotion.md - Environment promotion strategies
CI/CD Pipelines
- templates/cicd-pipelines/template-ci-cd.md - General CI/CD patterns
- templates/cicd-pipelines/template-github-actions.md - GitHub Actions workflows
- templates/cicd-pipelines/template-gitops.md - GitOps deployment patterns
- templates/cicd-pipelines/template-release-safety.md - Safe release practices
Monitoring & Observability
- templates/monitoring-observability/template-slo.md - Service level objectives
- templates/monitoring-observability/template-alert-rules.md - Alert configuration
- templates/monitoring-observability/template-observability-slo.md - Observability patterns
- templates/monitoring-observability/template-loadtest-perf.md - Load testing and performance
Incident Response
- templates/incident-response/template-postmortem.md - Incident postmortems
- templates/incident-response/template-incident-comm.md - Incident communication
- templates/incident-response/template-incident-response.md - Incident response procedures
Security
- templates/security/template-security-hardening.md - Security hardening checklists
Navigation
Resources
- resources/operational-patterns.md
- resources/sre-incident-management.md
- resources/devops-best-practices.md
- resources/platform-engineering-patterns.md
- resources/gitops-workflows.md
Shared Utilities (Centralized patterns — extract, don't duplicate)
Templates
- templates/incident-response/template-postmortem.md
- templates/incident-response/template-incident-comm.md
- templates/incident-response/template-incident-response.md
- templates/docker/template-docker-ops.md
- templates/security/template-security-hardening.md
- templates/azure/template-azure-ops.md
- templates/gcp/template-gcp-terraform.md
- templates/gcp/template-gcp-ops.md
- templates/cicd-pipelines/template-release-safety.md
- templates/cicd-pipelines/template-gitops.md
- templates/cicd-pipelines/template-ci-cd.md
- templates/cicd-pipelines/template-github-actions.md
- templates/kafka/template-kafka-ops.md
- templates/aws/template-aws-terraform.md
- templates/aws/template-aws-ops.md
- templates/aws/template-cost-optimization.md
- templates/monitoring-observability/template-slo.md
- templates/monitoring-observability/template-loadtest-perf.md
- templates/monitoring-observability/template-alert-rules.md
- templates/monitoring-observability/template-observability-slo.md
- templates/kubernetes/template-k8s-deploy.yaml
- templates/kubernetes/template-platform-api.md
- templates/kubernetes/template-kubernetes-ops.md
- templates/kubernetes/template-ha-dr.md
- templates/terraform-iac/template-env-promotion.md
- templates/terraform-iac/template-iac-terraform.md
- templates/terraform-iac/template-module.md
Data
- data/sources.json — Curated external references
Related Skills
Operations & Infrastructure:
Security & Compliance:
Software Development:
AI/ML Operations:
Operational Deep Dives
See resources/operational-patterns.md for:
- Platform engineering blueprints and GitOps reconciliation checklists
- DevSecOps CI/CD gates, SLO/SLI playbooks, and rollout verification steps
- Observability patterns (eBPF), AIOps incident handling, and reliability drills
External Resources
See data/sources.json for 45+ curated sources organized by tech stack:
- Cloud Platforms: AWS, GCP, Azure documentation and best practices
- Container Orchestration: Kubernetes, Helm, Kustomize, Docker
- Infrastructure as Code: Terraform, CloudFormation, ARM templates
- CI/CD & GitOps: GitHub Actions, GitLab CI, Jenkins, ArgoCD, FluxCD
- Streaming: Apache Kafka, Confluent, Strimzi
- Monitoring: Prometheus, Grafana, Datadog, OpenTelemetry, Jaeger
- SRE: Google SRE books, incident response patterns
- Security: OWASP DevSecOps, CIS Benchmarks, Trivy, Falco
- Tools: kubectl, k9s, stern, Cosign, Syft, Terragrunt
Use this skill as a hub for safe, modern, and production-grade DevOps patterns. All templates and patterns are operational—no theory or book summaries.
1---2name: ops-devops-platform-23description: Production-grade DevOps patterns with Kubernetes 1.34+, Terraform 1.9+, Docker 27+, ArgoCD/FluxCD GitOps, SRE, eBPF-based observability, AI-driven monitoring, CI/CD security, and cloud-native operations (AWS, GCP, Azure, Kafka).4---5
6# DevOps Engineering — Quick Reference
7
8This skill equips Claude with actionable templates, checklists, and patterns for building self-service platforms, automating infrastructure with GitOps, deploying securely with DevSecOps, scaling with Kubernetes, ensuring reliability through SRE practices, and operating production systems with AI-driven observability.
9
10**Modern Best Practices (December 2025)**: Kubernetes 1.34 (in-place Pod resource updates GA, 1.35 releasing Dec 17), Docker 27 with BuildKit optimizations, Terraform 1.9+ with improved provider ecosystem, ArgoCD 2.14/FluxCD 2.5 GitOps patterns, eBPF-based observability (Cilium, Hubble), and AI-driven AIOps for incident correlation.
11
12---
13
14## Quick Reference
15
16| Task | Tool/Framework | Command | When to Use |
17|------|----------------|---------|-------------|
18| Infrastructure as Code | Terraform 1.9+ | `terraform plan && terraform apply` | Provision cloud resources declaratively |
19| GitOps Deployment | ArgoCD / FluxCD | `argocd app sync myapp` | Continuous reconciliation, declarative deployments |
20| Container Build | Docker 27+ | `docker build -t app:v1 .` | Package applications with dependencies |
21| Kubernetes Deployment | kubectl / Helm (K8s 1.34+) | `kubectl apply -f deploy.yaml` / `helm upgrade app ./chart` | Deploy to K8s cluster, manage releases |
22| CI/CD Pipeline | GitHub Actions | Define workflow in `.github/workflows/ci.yml` | Automated testing, building, deploying |
23| Security Scanning | Trivy / Falco | `trivy image myapp:latest` | Vulnerability scanning, runtime security |
24| Monitoring & Alerts | Prometheus + Grafana | Configure ServiceMonitor and AlertManager | Observability, SLO tracking, incident alerts |
25| Load Testing | k6 / Locust | `k6 run load-test.js` | Performance validation, capacity planning |
26| Incident Response | PagerDuty / Opsgenie | Configure escalation policies | On-call management, automated escalation |
27| Platform Engineering | Backstage / Port | Deploy internal developer portal | Self-service infrastructure, golden paths |
28
29---
30
31## Decision Tree: Choosing DevOps Approach
32
33```text
34What do you need to accomplish?
35 ├─ Infrastructure provisioning?
36 │ ├─ Cloud-agnostic → Terraform (multi-cloud support)
37 │ ├─ AWS-specific → CloudFormation or Terraform
38 │ ├─ GCP-specific → Deployment Manager or Terraform
39 │ └─ Azure-specific → ARM templates or Terraform
40 │
41 ├─ Application deployment?
42 │ ├─ Kubernetes cluster?
43 │ │ ├─ Simple deploy → kubectl apply -f manifests/
44 │ │ ├─ Complex app → Helm charts
45 │ │ └─ GitOps workflow → ArgoCD or FluxCD
46 │ └─ Serverless?
47 │ ├─ AWS → Lambda + SAM/Serverless Framework
48 │ ├─ GCP → Cloud Functions
49 │ └─ Azure → Azure Functions
50 │
51 ├─ CI/CD pipeline setup?
52 │ ├─ GitHub-based → GitHub Actions (template-github-actions.md)
53 │ ├─ GitLab-based → GitLab CI
54 │ ├─ Enterprise → Jenkins or Tekton
55 │ └─ Security-first → Add SAST/DAST/SCA scans (template-ci-cd.md)
56 │
57 ├─ Observability & monitoring?
58 │ ├─ Metrics → Prometheus + Grafana
59 │ ├─ Distributed tracing → Jaeger or OpenTelemetry
60 │ ├─ Logs → Loki or ELK stack
61 │ ├─ eBPF-based → Cilium + Hubble (sidecarless)
62 │ └─ Unified platform → Datadog or New Relic
63 │
64 ├─ Incident management?
65 │ ├─ On-call rotation → PagerDuty or Opsgenie
66 │ ├─ Postmortem → template-postmortem.md
67 │ └─ Communication → template-incident-comm.md
68 │
69 ├─ Platform engineering?
70 │ ├─ Self-service → Backstage or Port (internal developer portal)
71 │ ├─ Policy enforcement → OPA/Gatekeeper
72 │ └─ Golden paths → Template repositories + automation
73 │
74 └─ Security hardening?
75 ├─ Container scanning → Trivy or Grype
76 ├─ Runtime security → Falco or Sysdig
77 ├─ Secrets management → HashiCorp Vault or cloud-native KMS
78 └─ Compliance → CIS Benchmarks, template-security-hardening.md
79```
80
81---
82
83## When to Use This Skill
84
85Claude should invoke this skill when users request:
86
87- Platform engineering patterns (self-service developer platforms, internal tools)
88- GitOps workflows (ArgoCD, FluxCD, declarative infrastructure management)
89- Infrastructure as Code patterns (Terraform, K8s manifests, policy as code)
90- CI/CD pipelines with DevSecOps (GitHub Actions, security scanning, SAST/DAST/SCA)
91- SRE incident management, AI-driven alerting, escalation, or postmortem templates
92- eBPF-based observability (Cilium, Hubble, kernel-level insights, OpenTelemetry)
93- Kubernetes operational patterns (day-2 operations, resource management, workload placement)
94- Cloud-native monitoring (Prometheus, Grafana, unified observability platforms)
95- Team workflow, communication, handover guides, and runbooks
96
97---
98
99## Resources (Best Practices Guides)
100
101Operational best practices by domain:
102
103- **DevOps/SRE Operations**: [resources/devops-best-practices.md](resources/devops-best-practices.md) - Core patterns for safe infrastructure changes, deployments, and incident response
104- **Platform Engineering**: [resources/platform-engineering-patterns.md](resources/platform-engineering-patterns.md) - Self-service platforms, golden paths, internal developer portals, policy as code
105- **GitOps Workflows**: [resources/gitops-workflows.md](resources/gitops-workflows.md) - Continuous reconciliation, multi-environment promotion, ArgoCD/FluxCD patterns, progressive delivery
106- **SRE Incident Management**: [resources/sre-incident-management.md](resources/sre-incident-management.md) - Severity classification, escalation procedures, blameless postmortems, AI-driven correlation
107- **Operational Standards**: [resources/operational-patterns.md](resources/operational-patterns.md) - Platform engineering blueprints, CI/CD safety, SLOs, and reliability drills
108
109Each guide includes:
110- Checklists for completeness and safety
111- Common anti-patterns and remediations
112- Step-by-step patterns for safe rollout, rollback, and verification
113- Decision matrices (e.g., deployment, escalation, monitoring strategy)
114- Real-world examples and edge case handling
115
116---
117
118## Templates (Copy-Paste Ready)
119
120Production templates organized by tech stack (27 templates total):
121
122### AWS Cloud
123- [templates/aws/template-aws-ops.md](templates/aws/template-aws-ops.md) - AWS service operations and best practices
124- [templates/aws/template-aws-terraform.md](templates/aws/template-aws-terraform.md) - Terraform modules for AWS infrastructure
125- [templates/aws/template-cost-optimization.md](templates/aws/template-cost-optimization.md) - AWS cost optimization strategies
126
127### GCP Cloud
128- [templates/gcp/template-gcp-ops.md](templates/gcp/template-gcp-ops.md) - GCP service operations
129- [templates/gcp/template-gcp-terraform.md](templates/gcp/template-gcp-terraform.md) - Terraform modules for GCP
130
131### Azure Cloud
132- [templates/azure/template-azure-ops.md](templates/azure/template-azure-ops.md) - Azure service operations
133
134### Kubernetes
135- [templates/kubernetes/template-kubernetes-ops.md](templates/kubernetes/template-kubernetes-ops.md) - Day-to-day K8s operations
136- [templates/kubernetes/template-ha-dr.md](templates/kubernetes/template-ha-dr.md) - High availability and disaster recovery
137- [templates/kubernetes/template-platform-api.md](templates/kubernetes/template-platform-api.md) - Platform API patterns
138- [templates/kubernetes/template-k8s-deploy.yaml](templates/kubernetes/template-k8s-deploy.yaml) - Deployment manifests
139
140### Docker
141- [templates/docker/template-docker-ops.md](templates/docker/template-docker-ops.md) - Container build, security, and operations
142
143### Kafka
144- [templates/kafka/template-kafka-ops.md](templates/kafka/template-kafka-ops.md) - Kafka cluster operations and streaming
145
146### Terraform & IaC
147- [templates/terraform-iac/template-iac-terraform.md](templates/terraform-iac/template-iac-terraform.md) - Infrastructure as Code patterns
148- [templates/terraform-iac/template-module.md](templates/terraform-iac/template-module.md) - Reusable Terraform modules
149- [templates/terraform-iac/template-env-promotion.md](templates/terraform-iac/template-env-promotion.md) - Environment promotion strategies
150
151### CI/CD Pipelines
152- [templates/cicd-pipelines/template-ci-cd.md](templates/cicd-pipelines/template-ci-cd.md) - General CI/CD patterns
153- [templates/cicd-pipelines/template-github-actions.md](templates/cicd-pipelines/template-github-actions.md) - GitHub Actions workflows
154- [templates/cicd-pipelines/template-gitops.md](templates/cicd-pipelines/template-gitops.md) - GitOps deployment patterns
155- [templates/cicd-pipelines/template-release-safety.md](templates/cicd-pipelines/template-release-safety.md) - Safe release practices
156
157### Monitoring & Observability
158- [templates/monitoring-observability/template-slo.md](templates/monitoring-observability/template-slo.md) - Service level objectives
159- [templates/monitoring-observability/template-alert-rules.md](templates/monitoring-observability/template-alert-rules.md) - Alert configuration
160- [templates/monitoring-observability/template-observability-slo.md](templates/monitoring-observability/template-observability-slo.md) - Observability patterns
161- [templates/monitoring-observability/template-loadtest-perf.md](templates/monitoring-observability/template-loadtest-perf.md) - Load testing and performance
162
163### Incident Response
164- [templates/incident-response/template-postmortem.md](templates/incident-response/template-postmortem.md) - Incident postmortems
165- [templates/incident-response/template-incident-comm.md](templates/incident-response/template-incident-comm.md) - Incident communication
166- [templates/incident-response/template-incident-response.md](templates/incident-response/template-incident-response.md) - Incident response procedures
167
168### Security
169- [templates/security/template-security-hardening.md](templates/security/template-security-hardening.md) - Security hardening checklists
170
171---
172
173## Navigation
174
175**Resources**
176- [resources/operational-patterns.md](resources/operational-patterns.md)
177- [resources/sre-incident-management.md](resources/sre-incident-management.md)
178- [resources/devops-best-practices.md](resources/devops-best-practices.md)
179- [resources/platform-engineering-patterns.md](resources/platform-engineering-patterns.md)
180- [resources/gitops-workflows.md](resources/gitops-workflows.md)
181
182**Shared Utilities** (Centralized patterns — extract, don't duplicate)
183- [../_shared/utilities/config-validation.md](../_shared/utilities/config-validation.md) — Zod 3.24+, secrets management (Vault, 1Password, Doppler)
184- [../_shared/utilities/resilience-utilities.md](../_shared/utilities/resilience-utilities.md) — p-retry v6, circuit breaker, OTel spans
185- [../_shared/utilities/logging-utilities.md](../_shared/utilities/logging-utilities.md) — pino v9 + OpenTelemetry integration
186- [../_shared/utilities/observability-utilities.md](../_shared/utilities/observability-utilities.md) — OpenTelemetry SDK, tracing, metrics
187- [../_shared/utilities/testing-utilities.md](../_shared/utilities/testing-utilities.md) — Test factories, fixtures, mocks
188- [../_shared/resources/code-quality-operational-playbook.md](../_shared/resources/code-quality-operational-playbook.md) — Canonical coding rules & review protocols
189
190**Templates**
191- [templates/incident-response/template-postmortem.md](templates/incident-response/template-postmortem.md)
192- [templates/incident-response/template-incident-comm.md](templates/incident-response/template-incident-comm.md)
193- [templates/incident-response/template-incident-response.md](templates/incident-response/template-incident-response.md)
194- [templates/docker/template-docker-ops.md](templates/docker/template-docker-ops.md)
195- [templates/security/template-security-hardening.md](templates/security/template-security-hardening.md)
196- [templates/azure/template-azure-ops.md](templates/azure/template-azure-ops.md)
197- [templates/gcp/template-gcp-terraform.md](templates/gcp/template-gcp-terraform.md)
198- [templates/gcp/template-gcp-ops.md](templates/gcp/template-gcp-ops.md)
199- [templates/cicd-pipelines/template-release-safety.md](templates/cicd-pipelines/template-release-safety.md)
200- [templates/cicd-pipelines/template-gitops.md](templates/cicd-pipelines/template-gitops.md)
201- [templates/cicd-pipelines/template-ci-cd.md](templates/cicd-pipelines/template-ci-cd.md)
202- [templates/cicd-pipelines/template-github-actions.md](templates/cicd-pipelines/template-github-actions.md)
203- [templates/kafka/template-kafka-ops.md](templates/kafka/template-kafka-ops.md)
204- [templates/aws/template-aws-terraform.md](templates/aws/template-aws-terraform.md)
205- [templates/aws/template-aws-ops.md](templates/aws/template-aws-ops.md)
206- [templates/aws/template-cost-optimization.md](templates/aws/template-cost-optimization.md)
207- [templates/monitoring-observability/template-slo.md](templates/monitoring-observability/template-slo.md)
208- [templates/monitoring-observability/template-loadtest-perf.md](templates/monitoring-observability/template-loadtest-perf.md)
209- [templates/monitoring-observability/template-alert-rules.md](templates/monitoring-observability/template-alert-rules.md)
210- [templates/monitoring-observability/template-observability-slo.md](templates/monitoring-observability/template-observability-slo.md)
211- [templates/kubernetes/template-k8s-deploy.yaml](templates/kubernetes/template-k8s-deploy.yaml)
212- [templates/kubernetes/template-platform-api.md](templates/kubernetes/template-platform-api.md)
213- [templates/kubernetes/template-kubernetes-ops.md](templates/kubernetes/template-kubernetes-ops.md)
214- [templates/kubernetes/template-ha-dr.md](templates/kubernetes/template-ha-dr.md)
215- [templates/terraform-iac/template-env-promotion.md](templates/terraform-iac/template-env-promotion.md)
216- [templates/terraform-iac/template-iac-terraform.md](templates/terraform-iac/template-iac-terraform.md)
217- [templates/terraform-iac/template-module.md](templates/terraform-iac/template-module.md)
218
219**Data**
220- [data/sources.json](data/sources.json) — Curated external references
221
222---
223
224## Related Skills
225
226**Operations & Infrastructure:**
227- [../qa-resilience/SKILL.md](../qa-resilience/SKILL.md) — Resilience, chaos engineering, and failure handling patterns
228- [../data-sql-optimization/SKILL.md](../data-sql-optimization/SKILL.md) — Database tuning, high availability, and migrations
229- [../qa-observability/SKILL.md](../qa-observability/SKILL.md) — Monitoring, tracing, profiling, and performance optimization
230- [../qa-debugging/SKILL.md](../qa-debugging/SKILL.md) — Production debugging, log analysis, and root cause investigation
231
232**Security & Compliance:**
233- [../software-security-appsec/SKILL.md](../software-security-appsec/SKILL.md) — Application-layer security patterns and OWASP best practices
234
235**Software Development:**
236- [../software-backend/SKILL.md](../software-backend/SKILL.md) — Service-level design and integration patterns
237- [../software-architecture-design/SKILL.md](../software-architecture-design/SKILL.md) — System design, scalability, and architectural patterns
238- [../dev-api-design/SKILL.md](../dev-api-design/SKILL.md) — RESTful API design and versioning
239- [../git-workflow/SKILL.md](../git-workflow/SKILL.md) — Git branching strategies and CI/CD integration
240
241**AI/ML Operations:**
242- [../ai-mlops/SKILL.md](../ai-mlops/SKILL.md) — ML model deployment, monitoring, and lifecycle management
243- [../ai-mlops/SKILL.md](../ai-mlops/SKILL.md) — ML security, governance, and compliance
244
245---
246
247## Operational Deep Dives
248
249See [resources/operational-patterns.md](resources/operational-patterns.md) for:
250- Platform engineering blueprints and GitOps reconciliation checklists
251- DevSecOps CI/CD gates, SLO/SLI playbooks, and rollout verification steps
252- Observability patterns (eBPF), AIOps incident handling, and reliability drills
253
254---
255
256## External Resources
257
258See [data/sources.json](data/sources.json) for 45+ curated sources organized by tech stack:
259- **Cloud Platforms**: AWS, GCP, Azure documentation and best practices
260- **Container Orchestration**: Kubernetes, Helm, Kustomize, Docker
261- **Infrastructure as Code**: Terraform, CloudFormation, ARM templates
262- **CI/CD & GitOps**: GitHub Actions, GitLab CI, Jenkins, ArgoCD, FluxCD
263- **Streaming**: Apache Kafka, Confluent, Strimzi
264- **Monitoring**: Prometheus, Grafana, Datadog, OpenTelemetry, Jaeger
265- **SRE**: Google SRE books, incident response patterns
266- **Security**: OWASP DevSecOps, CIS Benchmarks, Trivy, Falco
267- **Tools**: kubectl, k9s, stern, Cosign, Syft, Terragrunt
268
269---
270
271*Use this skill as a hub for safe, modern, and production-grade DevOps patterns. All templates and patterns are operational—no theory or book summaries.*
272```