diff --git a/README.md b/README.md index b5b99420..1eccdaef 100644 --- a/README.md +++ b/README.md @@ -34,11 +34,14 @@ Installation methods: - [CentOS](/docs/installation.md#centos) - [Fedora](/docs/installation.md#fedora) - [macOS (Homebrew)](/docs/installation.md#macos) + - [Windows](docs/installation.md#windows) #### Binary installation Kompose is released via GitHub on a three-week cycle, you can see all current releases on the [GitHub release page](https://github.com/kubernetes/kompose/releases). +__Linux and macOS:__ + ```sh # Linux curl -L https://github.com/kubernetes/kompose/releases/download/v1.0.0/kompose-linux-amd64 -o kompose @@ -46,14 +49,13 @@ curl -L https://github.com/kubernetes/kompose/releases/download/v1.0.0/kompose-l # macOS curl -L https://github.com/kubernetes/kompose/releases/download/v1.0.0/kompose-darwin-amd64 -o kompose -# Windows -curl -L https://github.com/kubernetes/kompose/releases/download/v1.0.0/kompose-windows-amd64.exe -o kompose.exe - chmod +x kompose sudo mv ./kompose /usr/local/bin/kompose ``` -Alternatively, you can download the less-bandwidth intense [tarball](https://github.com/kubernetes/kompose/releases). +__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. ## Shell autocompletion diff --git a/docs/installation.md b/docs/installation.md index dea9cfc9..e670bb6a 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -6,21 +6,22 @@ We have multiple ways to install Kompose. Our prefered method is downloading the Kompose is released via GitHub on a three-week cycle, you can see all current releases on the [GitHub release page](https://github.com/kubernetes/kompose/releases). +__Linux and macOS:__ + ```sh -# Linux +# Linux curl -L https://github.com/kubernetes/kompose/releases/download/v1.0.0/kompose-linux-amd64 -o kompose # macOS curl -L https://github.com/kubernetes/kompose/releases/download/v1.0.0/kompose-darwin-amd64 -o kompose -# Windows -curl -L https://github.com/kubernetes/kompose/releases/download/v1.0.0/kompose-windows-amd64.exe -o kompose.exe - chmod +x kompose sudo mv ./kompose /usr/local/bin/kompose ``` -Alternatively, you can download the [tarball](https://github.com/kubernetes/kompose/releases). +__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. #### Go