Quick Start¶
This is the easiest workshop path for k13d:
- Make sure
kubectlalready works - Download the release asset for your OS and CPU
- Extract it
- Run the Web UI locally
Workshop default
Start with the single binary from Release v1.0.1. If you want to browse every asset first, open the full GitHub Releases page.
- Open
http://localhost:9090 - Username:
admin - Password: printed in the terminal when k13d starts
What to download
Use the main k13d_v1.0.1_<os>_<arch> asset for the workshop. The k13d-plugin_v1.0.1_<os>_<arch> assets are optional and are only needed if you specifically want kubectl k13d.
Most Common Commands¶
Web UI¶
TUI¶
Before You Start¶
You only need three things:
- A running Kubernetes cluster
kubectlinstalled- A working kubeconfig
Check it first:
If that command works, you are ready.
Download And Run¶
curl -L -o k13d_v1.0.1_darwin_arm64.tar.gz \
https://github.com/cloudbro-kube-ai/k13d/releases/download/v1.0.1/k13d_v1.0.1_darwin_arm64.tar.gz
tar -zxvf k13d_v1.0.1_darwin_arm64.tar.gz
cd k13d_v1.0.1_darwin_arm64
chmod +x ./k13d
# Remove quarantine and provenance attributes
xattr -d com.apple.quarantine ./k13d
xattr -d com.apple.provenance ./k13d
./k13d --web --port 9090 --auth-mode local
curl -L -o k13d_v1.0.1_darwin_amd64.tar.gz \
https://github.com/cloudbro-kube-ai/k13d/releases/download/v1.0.1/k13d_v1.0.1_darwin_amd64.tar.gz
tar -zxvf k13d_v1.0.1_darwin_amd64.tar.gz
cd k13d_v1.0.1_darwin_amd64
chmod +x ./k13d
# Remove quarantine and provenance attributes
xattr -d com.apple.quarantine ./k13d
xattr -d com.apple.provenance ./k13d
./k13d --web --port 9090 --auth-mode local
After the command starts:
- Open
http://localhost:9090 - Log in with username
admin - Copy the password from the terminal
macOS note
After extracting the archive, run both xattr commands before opening k13d. If macOS says an attribute does not exist, you can ignore that message.
Windows note
If SmartScreen blocks the app, click More info and then Run anyway.
Want The TUI Instead?¶
If you want the terminal dashboard instead of the Web UI, run:
Optional: kubectl k13d¶
If you specifically want the kubectl plugin, download the matching k13d-plugin asset from the same release or browse the full GitHub Releases page.
Example for macOS Apple Silicon:
curl -L -o k13d-plugin_v1.0.1_darwin_arm64.tar.gz \
https://github.com/cloudbro-kube-ai/k13d/releases/download/v1.0.1/k13d-plugin_v1.0.1_darwin_arm64.tar.gz
tar -zxvf k13d-plugin_v1.0.1_darwin_arm64.tar.gz
chmod +x ./kubectl-k13d
sudo mv ./kubectl-k13d /usr/local/bin/
kubectl k13d
k13d-plugin assets are available for macOS and Linux.