Claude-skill-registry Kind Setup
Create a Kind cluster in Docker-in-Docker environment
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/kind-setup" ~/.claude/skills/majiayu000-claude-skill-registry-kind-setup && rm -rf "$T"
manifest:
skills/data/kind-setup/SKILL.mdsource content
Kind Setup
Create a Kind Kubernetes cluster inside a DinD (Docker-in-Docker) container.
When to use
- Setting up Kubernetes for testing
- Need a Kind cluster inside this container
Steps
-
Verify Docker available
docker infoIf this fails, STOP. DinD is not available.
-
Delete existing cluster
kind delete cluster --name ark-cluster 2>/dev/null || true -
Create cluster
kind create cluster --name ark-cluster -
Configure kubeconfig with container IP
CONTROL_PLANE_IP=$(docker inspect -f '{{range.NetworkSettings.Networks}}{{.IPAddress}}{{end}}' ark-cluster-control-plane) kind get kubeconfig --name ark-cluster --internal | sed "s/ark-cluster-control-plane/$CONTROL_PLANE_IP/g" > ~/.kube/config -
Verify connection
kubectl cluster-info
Why the IP replacement?
This container connects to Kind via Docker networking. The default
127.0.0.1 or hostname won't work. Using the container's actual IP ensures connectivity.