Last active
January 24, 2020 01:10
-
-
Save daxmc99/c31167cd1de736bc5a48db56f8377f15 to your computer and use it in GitHub Desktop.
rioStart.sh
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
#set -x | |
#set -e | |
name='rio' | |
k3d delete --name=$name | |
k3d create -n $name --image rancher/k3s:v1.0.0 --publish 80:80 --publish 443:443 --publish 9443:9443 --publish 9080:9080 \ | |
--server-arg --no-deploy=traefik | |
declare -i i; i=0 | |
until k3d get-kubeconfig --name='rio' | |
do | |
if (( i > 20 )); then | |
break | |
fi | |
sleep 2 | |
i+=1 | |
done | |
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