📥 Installation
You can install the pre-compiled binary from releases, packages, use Docker or compile from the source.
Here are the steps for each of them:
🍏 Mac OS
Download one of releases
Install with brew
brew install helmwave/tap/helmwave
or use wget
export VERSION=0.14.1
wget -c https://github.com/helmwave/helmwave/releases/download/v$VERSION/helmwave_${VERSION}_darwin_amd64.tar.gz -O - | tar -xz
mv helmwave /usr/local/bin/
🐧 Linux
Download one of releases
export VERSION=0.14.1
wget -c https://github.com/helmwave/helmwave/releases/download/v$VERSION/helmwave_${VERSION}_linux_amd64.tar.gz -O - | tar -xz
mv helmwave /usr/local/bin/
🪟 Windows
We haven't tried running this on Windows.
Download one of releases
Run as a container
docker run diamon/helmwave
docker run --entrypoint=ash -it --rm --name helmwave diamon/helmwave
Install with go get
export VERSION=0.14.1
GO111MODULE=on go get github.com/helmwave/helmwave/cmd/helmwave@$VERSION
Compile from source
git clone git@github.com:helmwave/helmwave.git
cd helmwave
go build ./cmd/helmwave
mv helmwave /usr/local/bin/
Install with marcosnils/bin
bin install github.com/helmwave/helmwave