From 3365791209957e2f9a1fff0d4445f97b000a429e Mon Sep 17 00:00:00 2001 From: David Ross Date: Tue, 11 Jul 2017 14:05:57 -0500 Subject: [PATCH] Update 07-kubectl.md as per my other pull request, using 1.7.0 fixes an error with etcd configuration on the Kubernetes cluster. --- docs/07-kubectl.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/07-kubectl.md b/docs/07-kubectl.md index 8c9b189..2ac15ae 100644 --- a/docs/07-kubectl.md +++ b/docs/07-kubectl.md @@ -7,7 +7,7 @@ Run the following commands from the machine which will be your Kubernetes Client ### OS X ``` -wget https://storage.googleapis.com/kubernetes-release/release/v1.6.1/bin/darwin/amd64/kubectl +wget https://storage.googleapis.com/kubernetes-release/release/v1.7.0/bin/darwin/amd64/kubectl chmod +x kubectl sudo mv kubectl /usr/local/bin ``` @@ -15,7 +15,7 @@ sudo mv kubectl /usr/local/bin ### Linux ``` -wget https://storage.googleapis.com/kubernetes-release/release/v1.6.1/bin/linux/amd64/kubectl +wget https://storage.googleapis.com/kubernetes-release/release/v1.7.0/bin/linux/amd64/kubectl chmod +x kubectl sudo mv kubectl /usr/local/bin ```