kindplane cluster¶
Manage Kind clusters created by kindplane.
Usage¶
Subcommands¶
| Subcommand | Description |
|---|---|
list | List all kindplane-managed Kind clusters |
kindplane cluster list¶

List all Kind clusters on the system.
Usage¶
Flags¶
| Flag | Description |
|---|---|
--all | Show all Kind clusters, not just kindplane-managed |
Description¶
Lists Kind clusters on your system. By default, shows clusters managed by kindplane based on naming conventions.
Examples¶
List kindplane Clusters¶
List All Kind Clusters¶
Output¶
╭────────────────────────────────────────────────────────────────╮
│ Kind Clusters │
├────────────────────────────────────────────────────────────────┤
│ NAME STATUS NODES KUBERNETES │
│ kindplane-dev Running 3 v1.29.0 │
│ kindplane-test Running 2 v1.28.0 │
╰────────────────────────────────────────────────────────────────╯
Use Cases¶
Check Existing Clusters¶
Before creating a new cluster:
Clean Up Old Clusters¶
Identify clusters to remove:
# List all clusters
kindplane cluster list --all
# Delete specific cluster
kindplane down --config ./old-project/kindplane.yaml --force
CI/CD Cleanup¶
Ensure clean state in pipelines:
# Check for existing clusters
kindplane cluster list
# Delete if exists
kindplane down --force || true
# Create fresh cluster
kindplane up