101 lines
4.7 KiB
Bash
101 lines
4.7 KiB
Bash
#!/bin/bash
|
|
|
|
|
|
mount(){
|
|
pool=$(cli -c 'app kubernetes config' | grep -E "pool\s\|" | awk -F '|' '{print $3}' | tr -d " \t\n\r")
|
|
while true
|
|
do
|
|
clear -x
|
|
title
|
|
echo "1) Mount"
|
|
echo "2) Unmount All"
|
|
echo
|
|
echo "0) Exit"
|
|
read -rt 120 -p "Please type a number: " selection || { echo -e "\nFailed to make a selection in time" ; exit; }
|
|
case $selection in
|
|
0)
|
|
echo "Exiting.."
|
|
exit
|
|
;;
|
|
1)
|
|
call=$(k3s kubectl get pvc -A | sort -u | awk '{print $1 "\t" $2 "\t" $4}' | sed "s/^0/ /")
|
|
mount_list=$(echo "$call" | sed 1d | nl -s ") ")
|
|
mount_title=$(echo "$call" | head -n 1)
|
|
list=$(echo -e "# $mount_title\n$mount_list" | column -t)
|
|
while true
|
|
do
|
|
clear -x
|
|
title
|
|
echo "$list"
|
|
echo
|
|
echo "0) Exit"
|
|
read -rt 120 -p "Please type a number: " selection || { echo -e "\nFailed to make a selection in time" ; exit; }
|
|
[[ $selection == 0 ]] && echo "Exiting.." && exit
|
|
app=$(echo -e "$list" | grep ^"$selection)" | awk '{print $2}' | cut -c 4- )
|
|
[[ -z "$app" ]] && echo "Invalid Selection: $selection, was not an option" && sleep 3 && continue #Check for valid selection. If none, contiue
|
|
pvc=$(echo -e "$list" | grep ^"$selection)")
|
|
status=$(cli -m csv -c 'app chart_release query name,status' | grep -E "^$app\b" | awk -F ',' '{print $2}'| tr -d " \t\n\r")
|
|
if [[ "$status" != "STOPPED" ]]; then
|
|
[[ -z $timeout ]] && echo -e "\nDefault Timeout: 500" && timeout=500 || echo -e "\nCustom Timeout: $timeout"
|
|
SECONDS=0 && echo -e "\nScaling down $app" && midclt call chart.release.scale "$app" '{"replica_count": 0}' &> /dev/null
|
|
else
|
|
echo -e "\n$app is already stopped"
|
|
fi
|
|
while [[ "$SECONDS" -le "$timeout" && "$status" != "STOPPED" ]]
|
|
do
|
|
status=$(cli -m csv -c 'app chart_release query name,status' | grep -E "^$app\b" | awk -F ',' '{print $2}'| tr -d " \t\n\r")
|
|
echo -e "Waiting $((timeout-SECONDS)) more seconds for $app to be STOPPED" && sleep 5
|
|
done
|
|
data_name=$(echo "$pvc" | awk '{print $3}')
|
|
mount=$(echo "$pvc" | awk '{print $4}')
|
|
volume_name=$(echo "$pvc" | awk '{print $4}')
|
|
full_path=$(zfs list | grep "$volume_name" | grep "$pool" | awk '{print $1}')
|
|
echo -e "\nMounting\n$full_path\nTo\n/mnt/heavyscript/$data_name"
|
|
zfs set mountpoint=/heavyscript/"$data_name" "$full_path" || echo "Failed to mount $app"
|
|
echo -e "Mounted\n\nUnmount with:\nzfs set mountpoint=legacy $full_path && rmdir /mnt/heavyscript/$data_name\n\nOr use the Unmount All option\n"
|
|
while true
|
|
do
|
|
echo
|
|
read -rt 120 -p "Would you like to mount anything else? (y/N): " yesno || { echo -e "\nFailed to make a selection in time" ; exit; }
|
|
case $yesno in
|
|
[Yy] | [Yy][Ee][Ss])
|
|
clear -x
|
|
title
|
|
break
|
|
;;
|
|
[Nn] | [Nn][Oo])
|
|
exit
|
|
;;
|
|
*)
|
|
echo "Invalid selection \"$yesno\" was not an option"
|
|
sleep 3
|
|
continue
|
|
;;
|
|
esac
|
|
done
|
|
done
|
|
;;
|
|
2)
|
|
mapfile -t unmount_array < <(basename -a /mnt/heavyscript/* | sed "s/*//")
|
|
[[ -z ${unmount_array[*]} ]] && echo "Theres nothing to unmount" && sleep 3 && continue
|
|
for i in "${unmount_array[@]}"
|
|
do
|
|
main=$(k3s kubectl get pvc -A | grep -E "\s$i\s" | awk '{print $1, $2, $4}')
|
|
app=$(echo "$main" | awk '{print $1}' | cut -c 4-)
|
|
pvc=$(echo "$main" | awk '{print $3}')
|
|
full_path=$(find /mnt/"$pool"/ix-applications/releases/"$app"/volumes/ -maxdepth 0 | cut -c 6-)
|
|
zfs set mountpoint=legacy "$full_path""$pvc"
|
|
echo "$i unmounted" && rmdir /mnt/heavyscript/"$i" || echo "failed to unmount $i"
|
|
done
|
|
rmdir /mnt/heavyscript
|
|
sleep 3
|
|
;;
|
|
*)
|
|
echo "Invalid selection, \"$selection\" was not an option"
|
|
sleep 3
|
|
continue
|
|
;;
|
|
esac
|
|
done
|
|
}
|
|
export -f mount |