diff --git a/README.md b/README.md index 52366f5f..3ad87a6e 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,30 @@ source <(kompose completion bash) source <(kompose completion zsh) ``` -## Building +## Development and building of Kompose + + +### Downloading the latest (master) binary + +"Nightly" binaries are generated on a per-merge basis and uploaded to [Bintray](https://bintray.com/kompose) + +__Linux and macOS:__ + +```sh +# Linux +curl -L https://dl.bintray.com/kompose/kompose/latest/kompose-linux-amd64 -o kompose + +# macOS +curl -L https://dl.bintray.com/kompose/kompose/latest/kompose-darwin-amd64 -o kompose + +chmod +x kompose +sudo mv ./kompose /usr/local/bin/kompose +``` + +__Windows:__ + +Download from [Bintray](https://dl.bintray.com/kompose/kompose/latest/kompose-windows-amd64.exe) and add the binary to your PATH. + ### Building with `go` diff --git a/docs/installation.md b/docs/installation.md index e670bb6a..8a01bcae 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -23,6 +23,29 @@ __Windows:__ Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.0.0/kompose-windows-amd64.exe) and add the binary to your PATH. + +#### Nightly / master release + +"Nightly" binaries are generated on a per-merge basis and uploaded to [Bintray](https://bintray.com/kompose) + +__Linux and macOS:__ + +```sh +# Linux +curl -L https://dl.bintray.com/kompose/kompose/latest/kompose-linux-amd64 -o kompose + +# macOS +curl -L https://dl.bintray.com/kompose/kompose/latest/kompose-darwin-amd64 -o kompose + +chmod +x kompose +sudo mv ./kompose /usr/local/bin/kompose +``` + +__Windows:__ + +Download from [Bintray](https://dl.bintray.com/kompose/kompose/latest/kompose-windows-amd64.exe) and add the binary to your PATH. + + #### Go Installing using `go get` pulls from the master branch with the latest development changes.