Claude-skill-registry k8s-openapi
Reference the Kubernetes API. Useful for understanding what is possible via the Kubernetes REST API.
install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/k8s-openapi" ~/.claude/skills/majiayu000-claude-skill-registry-k8s-openapi && rm -rf "$T"
manifest:
skills/data/k8s-openapi/SKILL.mdsource content
- Start a test cluster with:
. ONLY USE THIS SKILL ON THIS TEST CLUSTER.make test-cluster-create - Use the new context only through
and--context
on each--kubeconfig
command. Do not alter the config viakubectl
.kubectl config - Start a proxy server with
kubectl proxy - Discover available endpoints by querying
/openapi/v3 - Use the discovered endpoints to find out what you need to
- When you have found your answer:
- Stop the proxy process; and
- Shut down the test cluster with
make test-cluster-stop