Installation
Table of contents
Prerequisites
Before installing BeKind, ensure you have the following installed:
Docker
BeKind uses KIND, which requires Docker to run Kubernetes clusters in containers.
Podman is still considered experimental by KIND and may not work reliably with BeKind.
To check if Docker is installed:
docker --version
To install Docker:
- Linux: Follow the Docker Engine installation guide
- macOS: Install Docker Desktop for Mac
- Windows: Install Docker Desktop for Windows
Ensure Docker is running before using BeKind:
docker ps
Installing BeKind
Download from Releases Page
-
Visit the BeKind Releases page
- Download the latest release for your platform:
- Linux (AMD64):
bekind-linux-amd64 - macOS (ARM64/Apple Silicon):
bekind-darwin-arm64
- Linux (AMD64):
- Make the binary executable and move it to your PATH:
Linux:
chmod +x bekind-linux-amd64
sudo mv bekind-linux-amd64 /usr/local/bin/bekind
macOS:
chmod +x bekind-darwin-arm64
sudo mv bekind-darwin-arm64 /usr/local/bin/bekind
On macOS, you may need to allow the binary to run by going to System Preferences → Security & Privacy if you see a security warning on first run.
Verifying Installation
To verify BeKind is installed correctly:
bekind version
You should see output showing the BeKind version information.
To see all available commands:
bekind --help
Next Steps
Now that BeKind is installed, you can:
- Review CLI commands - Learn all available commands
- Learn about configuration options - Customize your clusters
- Explore features - Discover what BeKind can do
- Start your first cluster with
bekind start