Agent skill
kubernetes
Kubernetes operations playbook for deploying services: core objects, probes, resource sizing, safe rollouts, and fast kubectl debugging
Install this agent skill to your Project
npx add-skill https://github.com/bobmatnyc/claude-mpm-skills/tree/main/universal/infrastructure/kubernetes
SKILL.md
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:
readinessProbeandstartupProbefor safe rollouts - Resources: set
requests/limitsto 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 typereferences/rollouts-and-probes.md— probes, rollouts, graceful shutdown, rollbackreferences/debugging-runbook.md— common failure modes and a fast triage flowreferences/security-hardening.md— pod security, RBAC, network policy, supply chain
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
bad-example-skill
ANTI-PATTERN - Example showing violations of self-containment (DO NOT COPY)
example-framework-skill
Example of a properly self-contained skill following all best practices
systematic-debugging
Systematic debugging methodology emphasizing root cause analysis over quick fixes
verification-before-completion
Run verification commands and confirm output before claiming success
Root Cause Tracing
Systematically trace bugs backward through call stack to find original trigger
Brainstorming Ideas Into Designs
Interactive idea refinement using Socratic method to develop fully-formed designs
Didn't find tool you were looking for?