check for number of containers not pods

This commit is contained in:
Heavybullets8 2022-08-10 16:58:07 -06:00
parent 26362944a5
commit a8b60f5c71

View File

@ -25,24 +25,30 @@ done
app_name=$(echo -e "$app_name" | grep ^"$selection)" | awk '{print $2}') app_name=$(echo -e "$app_name" | grep ^"$selection)" | awk '{print $2}')
search=$(k3s crictl ps -a -s running | sed -E 's/([0-9]*|About)[[:space:]][a-z]{2,5}[[:space:]](hour)?[[:space:]]?ago//') search=$(k3s crictl ps -a -s running | sed -E 's/([0-9]*|About)[[:space:]][a-z]{2,5}[[:space:]](hour)?[[:space:]]?ago//')
mapfile -t pod_id < <(echo "$search" | grep -E "[[:space:]]$app_name([[:space:]]|-([-[:alnum:]])*[[:space:]])" | awk '{print $(NF)}') mapfile -t pod_id < <(echo "$search" | grep -E "[[:space:]]$app_name([[:space:]]|-([-[:alnum:]])*[[:space:]])" | awk '{print $(NF)}')
for pod in "${pod_id[@]}"
do
mapfile -t containers < <(echo "$search" | grep "$pod" | awk '{print $4}')
done
if [[ "${#pod_id[@]}" == 1 ]]; then if [[ "${#containers[@]}" == 1 ]]; then
container=$(echo "$search" | grep "${pod_id[*]}" | awk '{print $4}') container=$(echo "$search" | grep "${pod_id[*]}" | awk '{print $4}')
container_id=$(echo "$search" | grep -E "[[:space:]]${container}[[:space:]]" | awk '{print $1}') container_id=$(echo "$search" | grep -E "[[:space:]]${container}[[:space:]]" | awk '{print $1}')
elif [[ "${#pod_id[@]}" == 0 ]]; then elif [[ "${#containers[@]}" == 0 ]]; then
echo -e "No containers available\nAre you sure the application in running?" echo -e "No containers available\nAre you sure the application in running?"
exit exit
else else
containers=$(
for pod in "${pod_id[@]}" for pod in "${pod_id[@]}"
do do
echo "$search" | grep "$pod" | awk '{print $4}' mapfile -t containers < <(echo "$search" | grep "$pod" | awk '{print $4}')
done | nl -s ") " | column -t) done
while true while true
do do
clear -x clear -x
title title
echo "$containers" for container in "${containers[@]}"
do
echo "$container"
done | nl -s ") " | column -t
echo echo
echo "0) Exit" echo "0) Exit"
read -rt 120 -p "Choose a container by number: " selection || { echo -e "\nFailed to make a selection in time" ; exit; } read -rt 120 -p "Choose a container by number: " selection || { echo -e "\nFailed to make a selection in time" ; exit; }