kubernetes
Kubernetes operations playbook for deploying services: core objects, probes, resource sizing, safe rollouts, and fast kubectl debugging
What this skill does
# 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=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
Related in universal
headlessui
IncludedHeadless UI - Unstyled, fully accessible UI components for React and Vue with built-in ARIA patterns
mpm-orchestration-demo
IncludedReference implementation demonstrating the Command → Agent → Skill orchestration pattern in Claude MPM, showing both preloaded-skill and dynamic-skill-invocation styles
opentelemetry
IncludedOpenTelemetry observability patterns: traces, metrics, logs, context propagation, OTLP export, Collector pipelines, and troubleshooting
threat-modeling
IncludedThreat modeling workflow for software systems: scope, data flow diagrams, STRIDE analysis, risk scoring, and turning mitigations into backlog and tests
terraform
IncludedTerraform infrastructure-as-code workflow patterns: state and environments, module design, safe plan/apply, drift control, and CI guardrails
sec-edgar-pipeline
IncludedSEC EDGAR extraction pipeline: setup, filing discovery by CIK, recipe-driven extraction, and report generation.