From efa1af16f294481f3cdc98e4c907f0763c209fba Mon Sep 17 00:00:00 2001 From: Vincent Latombe Date: Thu, 12 Nov 2020 11:01:08 +0100 Subject: [PATCH] Update kind to 0.9.0 --- kind.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kind.sh b/kind.sh index 561b1a10e7..91abac2295 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.8.0/kind-$(uname | tr '[:upper:]' '[:lower:]')-amd64 + curl -Lo $WSTMP/kind https://github.com/kubernetes-sigs/kind/releases/download/v0.9.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.18.2/bin/$(uname | tr '[:upper:]' '[:lower:]')/amd64/kubectl + curl -Lo $WSTMP/kubectl https://storage.googleapis.com/kubernetes-release/release/v1.19.4/bin/$(uname | tr '[:upper:]' '[:lower:]')/amd64/kubectl chmod +x $WSTMP/kubectl fi