kubernetes
Original:🇺🇸 English
Translated
Kubernetes operations playbook for deploying services: core objects, probes, resource sizing, safe rollouts, and fast kubectl debugging
1installs
Added on
NPX Install
npx skill4agent add bobmatnyc/claude-mpm-skills kubernetesTags
Translated version includes tags in frontmatterSKILL.md Content
View Translation Comparison →Kubernetes
Quick Start (kubectl)
bash
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=200Production Minimums
- Health: and
readinessProbefor safe rolloutsstartupProbe - Resources: set /
requeststo prevent noisy-neighbor failureslimits - Security: run as non-root and grant least privilege
Load Next (References)
- — choose the right workload/controller and service type
references/core-objects.md - — probes, rollouts, graceful shutdown, rollback
references/rollouts-and-probes.md - — common failure modes and a fast triage flow
references/debugging-runbook.md - — pod security, RBAC, network policy, supply chain
references/security-hardening.md