Skip to content

Commit

Permalink
Bump kind version to 0.7.0
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <alexellis2@gmail.com>
  • Loading branch information
alexellis committed Mar 24, 2020
1 parent b1ecff8 commit 36c0884
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -20,3 +20,4 @@ faas-netes

.vscode
of_kind_portforward.pid
/kind*
7 changes: 6 additions & 1 deletion contrib/get_kind.sh
@@ -1,12 +1,17 @@
#!/bin/bash

set -e

# echo "go get -u sigs.k8s.io/kind@v0.4.0"

# export GO111MODULE="on"
# go get -u sigs.k8s.io/kind@v0.4.0

# Edited by Alex Ellis - KinD via binary is *much* faster,
# Go modules now adds several minutes to the build / test time :-(
curl -SLfs https://github.com/kubernetes-sigs/kind/releases/download/v0.5.1/kind-linux-amd64 > kind-linux-amd64

export VER="v0.7.0"
echo "Downloading KinD $VER"
curl -SLfs https://github.com/kubernetes-sigs/kind/releases/download/$VER/kind-linux-amd64 > kind-linux-amd64
chmod +x kind-linux-amd64
sudo mv kind-linux-amd64 /usr/local/bin/kind

0 comments on commit 36c0884

Please sign in to comment.