Installation
Installing kluctl.
Binaries
The kluctl CLI is available as a binary executable for all major platforms, the binaries can be downloaded form GitHub releases page .
Installation with Homebrew
With Homebrew for macOS and Linux:
brew install kluctl/tap/kluctl
Installation with Bash
With Bash for macOS and Linux:
curl -s https://kluctl.io/install.sh | bash
The install script does the following:
- attempts to detect your OS
- downloads and unpacks the release tar file in a temporary directory
- copies the kluctl binary to
/usr/local/bin
- removes the temporary directory
Build from source
Clone the repository:
git clone https://github.com/kluctl/kluctl
cd kluctl
Build the kluctl
binary (requires go >= 1.19):
make build
Run the binary:
./bin/kluctl -h
Container images
A container image with kluctl
is available on GitHub:
ghcr.io/kluctl/kluctl:<version>