From 4131c607d7a7b44c4d04b990c7d3afdfc4a208c5 Mon Sep 17 00:00:00 2001 From: Jesse Glick Date: Fri, 1 May 2020 08:19:27 -0400 Subject: [PATCH] Kind 0.8.0 --- kind.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kind.sh b/kind.sh index c0b40da270..561b1a10e7 100644 --- a/kind.sh +++ b/kind.sh @@ -4,12 +4,12 @@ set -euxo pipefail export PATH=$WSTMP:$PATH if [ \! -x $WSTMP/kind ] then - curl -Lo $WSTMP/kind https://github.com/kubernetes-sigs/kind/releases/download/v0.7.0/kind-$(uname | tr '[:upper:]' '[:lower:]')-amd64 + curl -Lo $WSTMP/kind https://github.com/kubernetes-sigs/kind/releases/download/v0.8.0/kind-$(uname | tr '[:upper:]' '[:lower:]')-amd64 chmod +x $WSTMP/kind fi if [ \! -x $WSTMP/kubectl ] then - curl -Lo $WSTMP/kubectl https://storage.googleapis.com/kubernetes-release/release/v1.17.0/bin/$(uname | tr '[:upper:]' '[:lower:]')/amd64/kubectl + curl -Lo $WSTMP/kubectl https://storage.googleapis.com/kubernetes-release/release/v1.18.2/bin/$(uname | tr '[:upper:]' '[:lower:]')/amd64/kubectl chmod +x $WSTMP/kubectl fi