Skip to content

Test clusters

The repo ships a script that spins up two kind clusters loaded with sample workloads — perfect for exploring or developing against without touching anything real.

What it sets up

hack/dev-clusters.sh creates:

  • kind-kubus-a — the full demo:
  • kind-kubus-b — an empty cluster, so you can try the multi-cluster merged views and the cluster column.

Prerequisites

Run it

./hack/dev-clusters.sh

Then launch Kubus and select the kind-kubus-a and kind-kubus-b contexts in the cluster switcher.

kind + inotify limits

On Linux, low inotify limits make kind's system pods crash-loop with "too many open files". If you hit that, raise them:

sudo sysctl fs.inotify.max_user_instances=512 fs.inotify.max_user_watches=524288

Tear down

kind delete cluster --name kubus-a
kind delete cluster --name kubus-b

See also