Back to list
dwmkerr

kind-setup

by dwmkerr

Run Claude Code as an isolated and containerized A2A agent - orchestrate multiple sessions with full visibility on Claude operations and messages. Configure marketplaces, plugins, MCP servers and more.

0🍴 1📅 Jan 23, 2026

SKILL.md


name: Kind Setup description: Create a Kind cluster in Docker-in-Docker environment

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

  1. Verify Docker available

    docker info
    

    If this fails, STOP. DinD is not available.

  2. Delete existing cluster

    kind delete cluster --name ark-cluster 2>/dev/null || true
    
  3. Create cluster

    kind create cluster --name ark-cluster
    
  4. 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
    
  5. 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.

Score

Total Score

70/100

Based on repository quality metrics

SKILL.md

SKILL.mdファイルが含まれている

+20
LICENSE

ライセンスが設定されている

+10
説明文

100文字以上の説明がある

+10
人気

GitHub Stars 100以上

0/15
最近の活動

3ヶ月以内に更新がある

0/10
フォーク

10回以上フォークされている

0/5
Issue管理

オープンIssueが50未満

+5
言語

プログラミング言語が設定されている

+5
タグ

1つ以上のタグが設定されている

0/5

Reviews

💬

Reviews coming soon