update kubeflow dip-catalog
This commit is contained in:
+15
@@ -0,0 +1,15 @@
|
||||
#!/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
|
||||
Reference in New Issue
Block a user