mount number brackets
This commit is contained in:
parent
4e24d1577e
commit
67a6436944
@ -19,7 +19,7 @@ do
|
|||||||
call=$(k3s kubectl get pvc -A | sort -u | awk '{print $1 "\t" $2 "\t" $4}' | sed "s/^0/ /")
|
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_list=$(echo "$call" | sed 1d | nl -s ") ")
|
||||||
mount_title=$(echo "$call" | head -n 1)
|
mount_title=$(echo "$call" | head -n 1)
|
||||||
list=$(echo -e "# $mount_title\n$mount_list\n\n0) Exit" | column -t)
|
list=$(echo -e "# $mount_title\n$mount_list" | column -t)
|
||||||
|
|
||||||
while true
|
while true
|
||||||
do
|
do
|
||||||
@ -27,12 +27,12 @@ do
|
|||||||
title
|
title
|
||||||
echo "$list"
|
echo "$list"
|
||||||
echo
|
echo
|
||||||
echo "0 Exit"
|
echo "0) Exit"
|
||||||
read -rt 120 -p "Please type a number: " selection
|
read -rt 120 -p "Please type a number: " selection
|
||||||
[[ $selection == 0 ]] && echo "Exiting.." && exit
|
[[ $selection == 0 ]] && echo "Exiting.." && exit
|
||||||
app=$(echo -e "$list" | grep ^"$selection " | awk '{print $2}' | cut -c 4- )
|
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
|
[[ -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 ")
|
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")
|
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
|
if [[ "$status" != "STOPPED" ]]; then
|
||||||
[[ -z $timeout ]] && echo -e "\nDefault Timeout: 500" && timeout=500 || echo -e "\nCustom Timeout: $timeout"
|
[[ -z $timeout ]] && echo -e "\nDefault Timeout: 500" && timeout=500 || echo -e "\nCustom Timeout: $timeout"
|
||||||
|
Loading…
Reference in New Issue
Block a user