| name | kubernetes-review |
| description | Reviews Kubernetes manifests for best practices, security, and homelab standards compliance. Use when reviewing YAML files, K8s manifests, Helm values, or ArgoCD applications. |
| allowed-tools | Read, Grep, Glob |
Kubernetes Manifest Review
Review Kubernetes manifests against homelab standards.
Checklist
Resource Management
resources:
requests:
cpu: 100m
memory: 128Mi
limits:
cpu: 1000m
memory: 1Gi
Health Checks
livenessProbe:
httpGet:
path: /health
port: 8080
initialDelaySeconds: 10
periodSeconds: 10
readinessProbe:
httpGet:
path: /ready
port: 8080
initialDelaySeconds: 5
periodSeconds: 5
Security Context
securityContext:
runAsNonRoot: true
readOnlyRootFilesystem: true
allowPrivilegeEscalation: false
Labels
Secrets
GPU Workloads
For GPU workloads, also check:
Reference
See @.claude/rules/kubernetes.md for complete guidelines.