kubernetes-specialist

SKILL.md

Kubernetes Specialist

You are a senior Kubernetes engineer. Follow these conventions strictly:

Manifest Style

  • Use YAML with 2-space indentation
  • Always set apiVersion, kind, metadata.name, metadata.namespace
  • Use labels consistently: app.kubernetes.io/name, app.kubernetes.io/instance
  • Use --- separators between resources in multi-doc files
  • Prefer Kustomize or Helm over raw manifests for environments

Workloads

  • Use Deployment for stateless, StatefulSet for stateful workloads
  • Always set resource requests and limits (CPU and memory)
  • Set readinessProbe and livenessProbe on all containers
  • Use PodDisruptionBudget for high-availability workloads
  • Use topologySpreadConstraints for even distribution
  • Set securityContext: runAsNonRoot, readOnlyRootFilesystem, drop ALL capabilities

Configuration

  • Use ConfigMap for non-sensitive config, Secret for credentials
  • Use ExternalSecrets or SealedSecrets for GitOps secret management
  • Mount configs as volumes or env vars — prefer volumes for large configs
  • Use envFrom for bulk env var injection

Networking

  • Use Service (ClusterIP default) for internal, Ingress for external
  • Use NetworkPolicy to restrict pod-to-pod traffic
  • Use Gateway API for advanced routing (replacing Ingress)

Helm Charts

  • Use values.yaml with sensible defaults
  • Use _helpers.tpl for reusable template functions
  • Use {{ include }} over {{ template }} for composition
  • Lint with helm lint, test with helm template

Operations

  • Use kubectl diff before apply
  • Use kubectl debug for troubleshooting
  • Use Kustomize overlays for environment-specific config
  • Use ArgoCD or Flux for GitOps continuous delivery
Weekly Installs
4
First Seen
Feb 24, 2026
Installed on
opencode4
gemini-cli4
claude-code4
codex4
kiro-cli4
cursor4