AgentStack
SKILL verified MIT Self-run

Kubernetes

skill-veekunth217-claude-scaffold-skill-kubernetes · by veekunth217

Kubernetes management — Helm charts, ArgoCD GitOps, Ingress, ConfigMaps, HPA autoscaling, blue/green deployments, debugging

No reviews yet
0 installs
15 views
0.0% view→install

Install

$ agentstack add skill-veekunth217-claude-scaffold-skill-kubernetes

✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access Used
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets No
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

Are you the author of Kubernetes? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

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 `` 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](../../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

# Context management
kubectl config get-contexts
kubectl config use-context [context]

# Debug a failing pod
kubectl describe pod [pod] -n [ns]
kubectl logs [pod] -n [ns] --previous
kubectl exec -it [pod] -n [ns] -- /bin/sh

# Resource pressure
kubectl top nodes
kubectl top pods -n [ns] --sort-by=memory

# Helm
helm list -A                          # all releases
helm history [release] -n [ns]        # rollback history
helm rollback [release] [revision]    # rollback
helm diff upgrade [release] [chart]   # preview changes (requires helm-diff)

# ArgoCD
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

Source & license

This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet — be the first.

Versions

  • v0.1.0 Imported from the upstream source.