15 lines
399 B
Bash
Executable File
15 lines
399 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
echo "Fetching KinD executable ..."
|
|
sudo swapoff -a
|
|
|
|
# This conditional helps running GH Workflows through
|
|
# [act](https://github.com/nektos/act)
|
|
if [ -e /swapfile ]; then
|
|
sudo rm -f /swapfile
|
|
sudo mkdir -p /tmp/etcd
|
|
sudo mount -t tmpfs tmpfs /tmp/etcd
|
|
fi
|
|
curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.20.0/kind-linux-amd64
|
|
chmod +x ./kind
|
|
sudo mv kind /usr/local/bin |