with one click
kind-setup
Create a Kind cluster in Docker-in-Docker environment
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Menu
Create a Kind cluster in Docker-in-Docker environment
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Based on SOC occupation classification
Test the Ark Dashboard UI with Playwright
Run Ark from cloned source using devspace
Install Ark on a Kuberenetes Cluster
Attach images to GitHub PRs and issues via a scratch repo
| name | Kind Setup |
| description | Create a Kind cluster in Docker-in-Docker environment |
Create a Kind Kubernetes cluster inside a DinD (Docker-in-Docker) container.
Verify Docker available
docker info
If 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
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.