rioStart.sh
#!/bin/bash | |
#set -x | |
#set -e | |
k3d delete --name='rio' | |
k3d create -n rio --image rancher/k3s:v0.8.1 --publish 80:80 --publish 443:443 --publish 9443:9443 --publish 9080:9080 && | |
declare -i i; i=0 | |
until k3d get-kubeconfig --name='rio' | |
do | |
if (( i > 20 )); then | |
break | |
fi | |
sleep 2 | |
i+=1 | |
done | |
KUBECONFIG=$(k3d get-kubeconfig --name='rio') kubectl apply -f scripts/rbac.yaml | |
echo "Please export IP_ADDRESSES=127.0.0.1" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment