mirror of https://github.com/kubernetes/kops.git
parent
9474d8ad2c
commit
3221aa0bad
|
@ -17,17 +17,17 @@ The `kops` binary is also available via our [releases](https://github.com/kubern
|
|||
### Linux
|
||||
|
||||
```shell
|
||||
curl -LO https://github.com/kubernetes/kops/releases/download/$(curl -s https://api.github.com/repos/kubernetes/kops/releases/latest | grep tag_name | cut -d '"' -f 4)/kops-linux-amd64
|
||||
chmod +x kops-linux-amd64
|
||||
sudo mv kops-linux-amd64 /usr/local/bin/kops
|
||||
curl -Lo kops https://github.com/kubernetes/kops/releases/download/$(curl -s https://api.github.com/repos/kubernetes/kops/releases/latest | grep tag_name | cut -d '"' -f 4)/kops-linux-amd64
|
||||
chmod +x kops
|
||||
sudo mv kops /usr/local/bin/kops
|
||||
```
|
||||
|
||||
### macOS
|
||||
|
||||
```shell
|
||||
curl -LO https://github.com/kubernetes/kops/releases/download/$(curl -s https://api.github.com/repos/kubernetes/kops/releases/latest | grep tag_name | cut -d '"' -f 4)/kops-darwin-amd64
|
||||
chmod +x kops-darwin-amd64
|
||||
sudo mv kops-darwin-amd64 /usr/local/bin/kops
|
||||
curl -Lo kops https://github.com/kubernetes/kops/releases/download/$(curl -s https://api.github.com/repos/kubernetes/kops/releases/latest | grep tag_name | cut -d '"' -f 4)/kops-darwin-amd64
|
||||
chmod +x kops
|
||||
sudo mv kops /usr/local/bin/kops
|
||||
```
|
||||
|
||||
## Windows
|
||||
|
|
Loading…
Reference in New Issue