Tools
Category: Tools
What it does: Lets you install, upgrade, and verify the CLI tools that Kunobi depends on — mise, kind, kubectl, and helm — directly from the Settings UI without opening a terminal.
Why Manage Tools Here?
Kunobi uses mise as a version manager to install and run Kubernetes tools in an isolated, reproducible way. The Tools tab gives you visibility into which tools are installed, their current versions, and whether updates are available.
This is the same tool management that powers the Try Kunobi demo cluster feature.
Kubernetes Full Stack
The Tools tab shows the Kubernetes Full Stack — everything needed for a complete local development environment: Kind, Kubectl, and Helm (Docker is required for Kind).
Each row in the table shows:
| Column | Description |
|---|---|
| Type | Plugin (managed by Kunobi), Mise (installed via mise), or System (system-level tool) |
| Tool | Tool name (Mise, Docker, Kind, Kubectl, Helm) |
| Status | Installed (green) or Not Installed |
| Path | Where the binary is located on disk |
| Version | Currently installed version |
| Latest | Newest available version — shown in blue when an update is available, — if already up to date |
Upgrading a Tool
When a newer version is available, the Latest column shows it in blue. Select one or more tools and use the batch toolbar to upgrade them.
Batch Operations
Click rows to select multiple tools — a toolbar appears at the top showing how many are selected and the available actions:
gupgrade — Upgrade selected tools to their latest versionuuninstall — Uninstall selected toolsEscclear — Deselect all
System Dependencies
Docker is a system-level dependency that Kunobi cannot install automatically. It must be installed manually from docker.com. Kunobi detects it automatically once installed.
Troubleshooting
Installation Fails
- Ensure you have an active internet connection (tools are downloaded from their official sources)
- Check that
miseis installed first if other tools fail - Try installing via terminal:
mise use kubectl kind helm
Tool Not Detected After Manual Install
If you installed a tool manually (e.g., via Homebrew) and it's not detected:
- Click the Refresh button at the top of the Tools tab
- Kunobi rescans for installed tools
Mise Not Found
If mise itself is missing and the Install button doesn't work:
curl https://mise.run | sh
Then restart Kunobi and the Tools tab will detect it.