スキル一覧に戻る
vasilyu1983

ops-devops-platform

by vasilyu1983

25🍴 6📅 2026年1月23日
GitHubで見るManusで実行

SKILL.md


name: ops-devops-platform description: "Production-grade DevOps and platform engineering patterns: Kubernetes, Terraform, containers, GitOps, CI/CD, observability, incident response, security hardening, and cloud-native operations (AWS, GCP, Azure, Kafka)."

DevOps Engineering — Quick Reference

This skill equips teams 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 strong observability.

Modern Best Practices (Jan 2026): Kubernetes 1.33-1.35 (1.35 "Timbernetes" released Dec 2025 with in-place pod restart GA, OCI image volumes alpha), Docker Engine v27, Terraform 1.x / OpenTofu 1.9+ (OSS fork with state encryption), GitOps with Argo CD v3 and Flux v2, OpenTelemetry for traces/metrics/logs, eBPF-based observability (Cilium + Tetragon for security), and AIOps for self-healing systems (60%+ enterprise adoption projected).


Quick Reference

TaskTool/FrameworkCommandWhen to Use
Infrastructure as CodeTerraform / OpenTofuterraform plan && terraform applyProvision cloud resources declaratively
GitOps DeploymentArgo CD / Fluxargocd app sync myappContinuous reconciliation, declarative deployments
Container BuildDocker Engine v27docker build -t app:v1 .Package applications with dependencies
Kubernetes Deploymentkubectl / Helm (Kubernetes)kubectl apply -f deploy.yaml / helm upgrade app ./chartDeploy to K8s cluster, manage releases
CI/CD PipelineGitHub ActionsDefine workflow in .github/workflows/ci.ymlAutomated testing, building, deploying
Security ScanningTrivy / Falco / Tetragontrivy image myapp:latestVulnerability scanning, runtime security, eBPF enforcement
Monitoring & AlertsPrometheus + GrafanaConfigure ServiceMonitor and AlertManagerObservability, SLO tracking, incident alerts
Load Testingk6 / Locustk6 run load-test.jsPerformance validation, capacity planning
Incident ResponsePagerDuty / OpsgenieConfigure escalation policiesOn-call management, automated escalation
Platform EngineeringBackstage / PortDeploy internal developer portalSelf-service infrastructure, golden paths

Decision Tree: Choosing DevOps Approach

What do you need to accomplish?
    ├─ Infrastructure provisioning?
    │   ├─ Cloud-agnostic → Terraform OR OpenTofu (OSS fork, state encryption)
    │   ├─ Programming-first → Pulumi (TypeScript/Python/Go)
    │   ├─ AWS-specific → CloudFormation or Terraform/OpenTofu
    │   ├─ GCP-specific → Deployment Manager or Terraform/OpenTofu
    │   └─ Azure-specific → ARM/Bicep or Terraform/OpenTofu
    │
    ├─ 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, escalation, and 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:

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

GCP Cloud

Azure Cloud

Kubernetes

Docker

Kafka

Terraform & IaC

CI/CD Pipelines

Monitoring & Observability

Incident Response

Security


Resources

Shared Utilities (Centralized patterns — extract, don't duplicate)

Templates

Data


Operations & Infrastructure:

Security & Compliance:

Software Development:

Optional: AI/Automation (Related Skills):


Cost Governance & Capacity Planning

assets/cost-governance/template-cost-governance.md — Production cost control for cloud infrastructure.

Key Sections

  • Cost Governance Framework — Tagging strategy, budget alerts, anomaly detection
  • Cloud Cost Optimization — Right-sizing, reserved capacity, storage tiering
  • Kubernetes Cost Control — Resource requests/limits, quotas, autoscaler config
  • Capacity Planning — Utilization baseline, growth projections, scaling triggers
  • FinOps Practices — Monthly review agenda, optimization workflow

Do / Avoid

GOOD: Do

  • Tag all resources at creation time
  • Set budget alerts before hitting limits
  • Review right-sizing recommendations monthly
  • Use spot/preemptible for fault-tolerant workloads
  • Set Kubernetes resource requests on all pods
  • Enable cluster autoscaler with scale-down
  • Document capacity planning assumptions
  • Run postmortems after every incident

BAD: Avoid

  • Deploying without cost tags
  • Running dev resources 24/7
  • Over-provisioning "just in case"
  • Ignoring reserved capacity opportunities
  • Disabling scale-down to "avoid disruption"
  • Alert fatigue (too many low-priority alerts)
  • Snowflake infrastructure (manual, undocumented)
  • "Clickops" drift (changes outside IaC)

Anti-Patterns

Anti-PatternProblemFix
No taggingCan't attribute costsEnforce tags in CI/CD
Dev runs 24/770% wasteScheduled shutdown
Over-provisionedPaying for unused capacityMonthly right-sizing
No reservationsPaying on-demand premium60-70% coverage target
Alert fatigueReal issues missedSLO-based alerting, tuned thresholds
Snowflake infraUndocumented, unreproducibleEverything in Terraform/IaC
No postmortemsSame incidents repeatBlameless postmortem for every SEV1/2

Optional: AI/Automation (AIOps)

Note: AI assists with analysis but cost/incident decisions need human approval. 2026 Trend: Gartner projects 60%+ of large enterprises will adopt AIOps-powered self-healing systems by 2026.

AIOps Capabilities (2026)

Self-Healing Systems:

  • AI-powered anomaly detection to predict failures before they happen
  • Automated remediation flows that trigger rollbacks or config changes
  • Intelligent test selection and risk-based change scoring in CI/CD
  • Causal graph analysis for instant root cause identification

Automated Operations:

  • Unused resource detection and notification
  • Right-sizing recommendation generation
  • Alert summarization and correlation (reduce noise by 90%+)
  • Runbook step suggestions and automated execution

AI-Assisted Analysis

  • Cost trend prediction and anomaly detection
  • Incident pattern identification across services
  • Post-mortem theme extraction
  • Capacity planning predictions

Platform Engineering + AI

"Shift Down" Paradigm (2026): Instead of "shifting left" (pushing toil to developers), platform teams now embed AI capabilities directly into the platform:

  • AI-ready Internal Developer Platforms (94% view AI as critical)
  • Multi-agent orchestration for code generation, security validation, deployment
  • Intelligent defaults and guardrails that scale across teams

Bounded Claims

  • AI recommendations need validation before action
  • Automated deletions require approval workflow
  • Cost predictions are estimates, not guarantees
  • Runbook suggestions need SRE verification
  • Self-healing actions should have human-defined policies and audit trails

Operational Deep Dives

See references/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), incident noise reduction, and reliability drills

External Resources

See data/sources.json for 55+ 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, OpenTofu, Pulumi, CloudFormation, ARM templates
  • CI/CD & GitOps: GitHub Actions, GitLab CI, Jenkins, ArgoCD, FluxCD
  • Streaming: Apache Kafka, Confluent, Strimzi
  • Monitoring: Prometheus, Grafana, Datadog, OpenTelemetry, Jaeger, Cilium/Hubble, Tetragon
  • 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.


Trend Awareness Protocol

IMPORTANT: When users ask recommendation questions about DevOps, platform engineering, or cloud infrastructure, you MUST use WebSearch to check current trends before answering.

Trigger Conditions

  • "What's the best tool for [Kubernetes/IaC/CI-CD/monitoring]?"
  • "What should I use for [container orchestration/GitOps/observability]?"
  • "What's the latest in DevOps/platform engineering?"
  • "Current best practices for [Terraform/ArgoCD/Prometheus]?"
  • "Is [tool/approach] still relevant in 2026?"
  • "[Kubernetes] vs [alternative]?" or "[ArgoCD] vs [FluxCD]?"
  • "Best cloud provider for [use case]?"
  • "What orchestration/monitoring tool should I use?"

Required Searches

  1. Search: "DevOps best practices 2026"
  2. Search: "[Kubernetes/Terraform/ArgoCD] vs alternatives 2026"
  3. Search: "platform engineering trends January 2026"
  4. Search: "[specific tool] new releases 2026"

What to Report

After searching, provide:

  • Current landscape: What tools/approaches are popular NOW (not 6 months ago)
  • Emerging trends: New tools, patterns, or practices gaining traction
  • Deprecated/declining: Tools/approaches losing relevance or support
  • Recommendation: Based on fresh data, not just static knowledge
  • Kubernetes versions and ecosystem tools (1.33+, Cilium, Gateway API)
  • Infrastructure as Code (Terraform, OpenTofu, Pulumi, CDK)
  • GitOps platforms (ArgoCD, FluxCD, Codefresh)
  • Observability stacks (OpenTelemetry, Grafana stack, Datadog)
  • Platform engineering tools (Backstage, Port, Kratix)
  • CI/CD platforms (GitHub Actions, GitLab CI, Dagger)
  • Cloud-native security (Falco, Trivy, policy engines)

スコア

総合スコア

60/100

リポジトリの品質指標に基づく評価

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

0/10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

レビュー

💬

レビュー機能は近日公開予定です