k8s-ops
Installation
SKILL.md
Kubernetes Operations
Core Workflow
Deployment Lifecycle
# 1. Validate before applying
kubectl apply --dry-run=server -f <manifest> -n <namespace>
# 2. Apply manifests
kubectl apply -f <manifest> -n <namespace>
# 3. Monitor rollout (blocks until complete or timeout)
kubectl rollout status deployment/<name> -n <namespace> --timeout=300s
# 4. Verify pods running
kubectl get pods -n <namespace> -l app=<label> -o wide