| name | kubernetes |
| description | Kubernetes management — Helm charts, ArgoCD GitOps, Ingress, ConfigMaps, HPA autoscaling, blue/green deployments, debugging |
| version | 1.0.0 |
| author | veekunth217 |
| tags | ["kubernetes","k8s","helm","argocd","gitops","ingress","nginx","hpa","blue-green","debugging"] |
| platforms | ["claude-code","cursor","codex"] |
Kubernetes Skill
Production Kubernetes management — from Helm chart authoring to GitOps with ArgoCD and advanced deployment strategies.
RULE: Always show manifests/plan before applying. Never run kubectl apply without showing what changes.
🚧 Status: Stub — implementation pending
This reference skill has the structure but the snippet content is still being filled in
(you'll see <!-- TODO --> placeholders below). It activates and tells Claude the topic
exists, but won't yield deep snippets yet.
Want to help? Pick any TODO, write the snippet, open a PR. See CONTRIBUTING.md.
Each contribution moves the skill closer to "Ready" status.
Capabilities
Helm Chart Creation & Management
ArgoCD Setup & GitOps Workflow
Ingress Controllers (nginx)
ConfigMaps & Secrets
HPA Autoscaling
Blue/Green Deployments
Kubernetes Debugging
Common Commands
kubectl config get-contexts
kubectl config use-context [context]
kubectl describe pod [pod] -n [ns]
kubectl logs [pod] -n [ns] --previous
kubectl exec -it [pod] -n [ns] -- /bin/sh
kubectl top nodes
kubectl top pods -n [ns] --sort-by=memory
helm list -A
helm history [release] -n [ns]
helm rollback [release] [revision]
helm diff upgrade [release] [chart]
argocd app list
argocd app sync [app]
argocd app rollback [app] [revision]
Helm Chart Stub
helm/[app]/
├── Chart.yaml
├── values.yaml
├── values-dev.yaml
├── values-prod.yaml
└── templates/
├── _helpers.tpl
├── deployment.yaml
├── service.yaml
├── ingress.yaml
├── hpa.yaml
├── configmap.yaml
├── serviceaccount.yaml
└── NOTES.txt