From f768d24316eb9ea1720d9716f7e57cc10c77efb5 Mon Sep 17 00:00:00 2001 From: dandersondavidp Date: Tue, 16 Jan 2018 15:25:46 -0600 Subject: [PATCH] Update version of kops to latest version The latest version of kops is not 1.7.0, the current version is 1.8. --- docs/getting-started-guides/kops.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/getting-started-guides/kops.md b/docs/getting-started-guides/kops.md index e61062cc88..00fea99abd 100644 --- a/docs/getting-started-guides/kops.md +++ b/docs/getting-started-guides/kops.md @@ -34,7 +34,7 @@ Download kops from the [releases page](https://github.com/kubernetes/kops/releas On MacOS: ``` -wget https://github.com/kubernetes/kops/releases/download/1.7.0/kops-darwin-amd64 +wget https://github.com/kubernetes/kops/releases/download/1.8.0/kops-darwin-amd64 chmod +x kops-darwin-amd64 mv kops-darwin-amd64 /usr/local/bin/kops # you can also install using Homebrew @@ -44,7 +44,7 @@ brew update && brew install kops On Linux: ``` -wget https://github.com/kubernetes/kops/releases/download/1.7.0/kops-linux-amd64 +wget https://github.com/kubernetes/kops/releases/download/1.8.0/kops-linux-amd64 chmod +x kops-linux-amd64 mv kops-linux-amd64 /usr/local/bin/kops ```