Merge pull request #741 from cdrage/update-the-readme

Update installation instructions
This commit is contained in:
Charlie Drage 2017-08-07 13:16:13 -04:00 committed by GitHub
commit 1867808582
2 changed files with 12 additions and 9 deletions

View File

@ -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

View File

@ -6,6 +6,8 @@ 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
curl -L https://github.com/kubernetes/kompose/releases/download/v1.0.0/kompose-linux-amd64 -o kompose
@ -13,14 +15,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 [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