Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add user prompt for multiple profile #3

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 24 additions & 3 deletions script.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,31 @@ USERNAME=`id -un`
cd ~/.kube
mkdir -p keys

profile=$(minikube profile list -o json | jq '.valid' | jq -r '.[].Name')
profiles=$(minikube profile list -o json | jq -r '.valid | .[] | select(.Status=="Running") | .Name')

profiles_count=$(echo "$profiles" | wc -l | tr -d '[:space:]')

if [ "$profiles_count" != 1 ]; then
options=($profiles)
echo "Select running cluster you want to copy files from?"
select opt in "${options[@]}"
do
profile_name=$opt
if [ "$profile_name" == "" ]; then
echo "Wrong option"
continue
fi
break
done
else
profile_name=$profiles
fi

echo "Using minikube profile $profile_name"

cp /Users/${USERNAME}/.minikube/ca.crt keys/
cp /Users/${USERNAME}/.minikube/profiles/$profile/client.crt keys/
cp /Users/${USERNAME}/.minikube/profiles/$profile/client.key keys/
cp /Users/${USERNAME}/.minikube/profiles/$profile_name/client.crt keys/
cp /Users/${USERNAME}/.minikube/profiles/$profile_name/client.key keys/

gsed -i "s/\/Users\/${USERNAME}\/.minikube\/profiles\/minikube/.\/keys/g" config
gsed -i "s/\/Users\/${USERNAME}\/.minikube/.\/keys/g" config