kubernetes

📁 bobmatnyc/claude-mpm-skills 📅 Jan 23, 2026
52
总安装量
52
周安装量
#4079
全站排名
安装命令
npx skills add https://github.com/bobmatnyc/claude-mpm-skills --skill kubernetes

Agent 安装分布

claude-code 41
gemini-cli 34
opencode 34
antigravity 32
codex 30
github-copilot 29

Skill 文档

Kubernetes

Quick Start (kubectl)

kubectl describe pod/<pod> -n <ns>
kubectl get events -n <ns> --sort-by=.lastTimestamp | tail -n 30
kubectl logs pod/<pod> -n <ns> --previous --tail=200

Production Minimums

  • Health: readinessProbe and startupProbe for safe rollouts
  • Resources: set requests/limits to prevent noisy-neighbor failures
  • Security: run as non-root and grant least privilege

Load Next (References)

  • references/core-objects.md — choose the right workload/controller and service type
  • references/rollouts-and-probes.md — probes, rollouts, graceful shutdown, rollback
  • references/debugging-runbook.md — common failure modes and a fast triage flow
  • references/security-hardening.md — pod security, RBAC, network policy, supply chain