mirror of
https://github.com/k8snetworkplumbingwg/multus-cni.git
synced 2025-08-12 13:33:02 +00:00
Otherwise, the latest changes to DRA (which is beta in K8s 1.32) are incompatible. Additionally, this: * Bumps kind version to 0.27.0 * Changes `loglevel` flag to `v` verbosity flag for `kind export logs` * fixes lint in the Dockerfile. * adds a couple notes in the docs.
17 lines
746 B
Bash
Executable File
17 lines
746 B
Bash
Executable File
#!/bin/sh
|
|
set -o errexit
|
|
|
|
if [ ! -d bin ]; then
|
|
mkdir bin
|
|
fi
|
|
|
|
curl -Lo ./bin/kind "https://github.com/kubernetes-sigs/kind/releases/download/v0.27.0/kind-$(uname)-amd64"
|
|
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.83/koko_0.83_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
|
|
wget -qO- https://get.helm.sh/helm-v3.14.3-linux-amd64.tar.gz | tar xvzf - --strip-components=1 -C ./bin linux-amd64/helm
|