Update installation instructions

Updates the install instructions on the README and installation.md guide
This commit is contained in:
Charlie Drage 2017-08-02 10:20:37 -04:00
parent 44f76ac98c
commit 1ea4f6a83e
2 changed files with 12 additions and 9 deletions

View File

@ -34,11 +34,14 @@ Installation methods:
- [CentOS](/docs/installation.md#centos) - [CentOS](/docs/installation.md#centos)
- [Fedora](/docs/installation.md#fedora) - [Fedora](/docs/installation.md#fedora)
- [macOS (Homebrew)](/docs/installation.md#macos) - [macOS (Homebrew)](/docs/installation.md#macos)
- [Windows](docs/installation.md#windows)
#### Binary installation #### 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). 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 ```sh
# Linux # Linux
curl -L https://github.com/kubernetes/kompose/releases/download/v1.0.0/kompose-linux-amd64 -o kompose 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 # macOS
curl -L https://github.com/kubernetes/kompose/releases/download/v1.0.0/kompose-darwin-amd64 -o kompose 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 chmod +x kompose
sudo mv ./kompose /usr/local/bin/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 ## Shell autocompletion

View File

@ -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). 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 ```sh
# Linux # Linux
curl -L https://github.com/kubernetes/kompose/releases/download/v1.0.0/kompose-linux-amd64 -o kompose curl -L https://github.com/kubernetes/kompose/releases/download/v1.0.0/kompose-linux-amd64 -o kompose
# macOS # macOS
curl -L https://github.com/kubernetes/kompose/releases/download/v1.0.0/kompose-darwin-amd64 -o kompose 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 chmod +x kompose
sudo mv ./kompose /usr/local/bin/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 #### Go