2020-02-13 06:36:13 +00:00
|
|
|
#!/bin/sh
|
|
|
|
set -o errexit
|
|
|
|
|
|
|
|
if [ ! -d bin ]; then
|
|
|
|
mkdir bin
|
|
|
|
fi
|
|
|
|
|
2020-09-03 17:07:59 +00:00
|
|
|
curl -Lo ./bin/kind "https://github.com/kubernetes-sigs/kind/releases/download/v0.8.1/kind-$(uname)-amd64"
|
2020-02-13 06:36:13 +00:00
|
|
|
chmod +x ./bin/kind
|
|
|
|
curl -Lo ./bin/kubectl https://storage.googleapis.com/kubernetes-release/release/`curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt`/bin/linux/amd64/kubectl
|
|
|
|
chmod +x ./bin/kubectl
|
|
|
|
curl -Lo ./bin/koko https://github.com/redhat-nfvpe/koko/releases/download/v0.82/koko_0.82_linux_amd64
|
|
|
|
chmod +x ./bin/koko
|
|
|
|
curl -Lo ./bin/jq https://github.com/stedolan/jq/releases/download/jq-1.6/jq-linux64
|
|
|
|
chmod +x ./bin/jq
|