scale-catalog/functions/mount.sh

115 lines
5.9 KiB
Bash
Raw Normal View History

2022-07-25 02:29:58 +00:00
#!/bin/bash
mount(){
2022-07-29 04:48:22 +00:00
while true
do
clear -x
title
echo "1) Mount"
echo "2) Unmount All"
echo
echo "0) Exit"
read -rt 120 -p "Unmount All Please type a number: " selection
case $selection in
0)
echo "Exiting.."
exit
;;
1)
2022-07-29 07:53:05 +00:00
call=$(k3s kubectl get pvc -A | sort -u | awk '{print $1 "\t" $2 "\t" $4}' | sed "s/^0/ /")
2022-07-29 07:51:37 +00:00
mount_list=$(echo "$call" | sed 1d | nl -s ") ")
mount_title=$(echo "$call" | head -n 1)
2022-07-29 07:53:05 +00:00
list=$(echo -e "$mount_title\n$mount_list" | column -t)
2022-07-29 07:51:37 +00:00
2022-07-29 04:48:22 +00:00
while true
2022-07-29 04:36:14 +00:00
do
2022-07-29 06:58:49 +00:00
clear -x
title
2022-07-29 04:48:22 +00:00
echo "$list"
2022-07-29 07:30:27 +00:00
echo
echo "0 Exit"
2022-07-29 04:48:22 +00:00
read -rt 120 -p "Please type a number: " selection
2022-07-29 07:30:27 +00:00
[[ $selection == 0 ]] && echo "Exiting.." && exit
2022-07-29 04:48:22 +00:00
app=$(echo -e "$list" | grep ^"$selection " | awk '{print $2}' | cut -c 4- )
2022-07-29 06:58:49 +00:00
[[ -z "$app" ]] && echo "Invalid Selection: $selection, was not an option" && sleep 3 && continue #Check for valid selection. If none, contiue
2022-07-29 04:48:22 +00:00
pvc=$(echo -e "$list" | grep ^"$selection ")
2022-07-29 04:36:14 +00:00
status=$(cli -m csv -c 'app chart_release query name,status' | grep -E "^$app\b" | awk -F ',' '{print $2}'| tr -d " \t\n\r")
2022-07-29 04:48:22 +00:00
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}')
mapfile -t full_path < <(zfs list | grep "$volume_name" | awk '{print $1}')
if [[ "${#full_path[@]}" -gt 1 ]]; then #if there is another app with the same name on another pool, use the current pools application, since the other instance is probably old, or unused, or a backup.
echo "$app is using the same volume identifier on more than one pool.. attempting to use your current kubernetes apps pool"
pool=$(cli -c 'app kubernetes config' | grep -E "dataset\s\|" | awk -F '|' '{print $3}' | awk -F '/' '{print $1}' | tr -d " \t\n\r")
full_path=$(zfs list | grep "$volume_name" | grep "$pool" | awk '{print $1}')
fi
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 -e "\nWould you like to mount anything else?"
echo "1) Yes"
echo "2) No"
read -rt 120 -p "Please type a number: " yesno
case $yesno in
1)
2022-07-29 06:52:26 +00:00
clear -x
2022-07-29 06:53:11 +00:00
title
2022-07-29 04:48:22 +00:00
break
;;
2)
exit
;;
*)
echo "Invalid selection \"$yesno\" was not an option"
sleep 2
continue
;;
esac
done
2022-07-29 04:36:14 +00:00
done
2022-07-29 04:48:22 +00:00
;;
2)
mapfile -t unmount_array < <(basename -a /mnt/heavyscript/* | sed "s/*//")
2022-07-29 04:52:54 +00:00
[[ -z ${unmount_array[*]} ]] && echo "Theres nothing to unmount" && sleep 3 && continue
2022-07-29 04:48:22 +00:00
for i in "${unmount_array[@]}"
2022-07-29 04:36:14 +00:00
do
2022-07-29 04:48:22 +00:00
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}')
mapfile -t path < <(find /mnt/*/ix-applications/releases/"$app"/volumes/ -maxdepth 0 | cut -c 6-)
if [[ "${#path[@]}" -gt 1 ]]; then #if there is another app with the same name on another pool, use the current pools application, since the other instance is probably old, or unused, or a backup.
echo "$i is a name used on more than one pool.. attempting to use your current kubernetes apps pool"
pool=$(cli -c 'app kubernetes config' | grep -E "dataset\s\|" | awk -F '|' '{print $3}' | awk -F '/' '{print $1}' | tr -d " \t\n\r")
full_path=$(find /mnt/"$pool"/ix-applications/releases/"$app"/volumes/ -maxdepth 0 | cut -c 6-)
2022-07-29 06:50:33 +00:00
zfs set mountpoint=legacy "$full_path""$pvc"
echo "$i unmounted" && rmdir /mnt/heavyscript/"$i" || echo "failed to unmount $i"
2022-07-29 04:48:22 +00:00
else
2022-07-29 06:50:33 +00:00
zfs set mountpoint=legacy "$path""$pvc"
echo "$i unmounted" && rmdir /mnt/heavyscript/"$i" || echo "failed to unmount $i"
2022-07-29 04:48:22 +00:00
fi
2022-07-29 04:36:14 +00:00
done
2022-07-29 04:48:22 +00:00
rmdir /mnt/heavyscript
2022-07-29 06:08:30 +00:00
sleep 2
2022-07-29 04:48:22 +00:00
;;
*)
echo "Invalid selection, \"$selection\" was not an option"
sleep 2
continue
;;
esac
done
2022-07-25 02:29:58 +00:00
}
2022-07-29 05:11:09 +00:00
export -f mount