change temp.txt to all_app_status

This commit is contained in:
Heavybullets8 2022-08-13 17:32:44 -06:00
parent ce2725f289
commit deb99d0af4

View File

@ -17,8 +17,8 @@ while true
do do
if while_status=$(cli -m csv -c 'app chart_release query name,update_available,human_version,human_latest_version,status' 2>/dev/null) ; then if while_status=$(cli -m csv -c 'app chart_release query name,update_available,human_version,human_latest_version,status' 2>/dev/null) ; then
((while_count++)) ((while_count++))
[[ -z $while_status ]] && continue || echo -e "$while_count\n$while_status" > temp.txt [[ -z $while_status ]] && continue || echo -e "$while_count\n$while_status" > all_app_status
mapfile -t deploying_check < <(grep ",DEPLOYING," temp.txt) mapfile -t deploying_check < <(grep ",DEPLOYING," all_app_status)
for i in "${deploying_check[@]}" for i in "${deploying_check[@]}"
do do
app_name=$(echo "$i" | awk -F ',' '{print $1}') app_name=$(echo "$i" | awk -F ',' '{print $1}')
@ -55,7 +55,7 @@ do
break break
fi fi
done done
rm temp.txt 2>/dev/null rm all_app_status 2>/dev/null
rm deploying 2>/dev/null rm deploying 2>/dev/null
echo echo
echo echo
@ -131,18 +131,18 @@ update_app(){
current_loop=0 current_loop=0
while true while true
do do
update_avail=$(grep "^$app_name," temp.txt | awk -F ',' '{print $3}') update_avail=$(grep "^$app_name," all_app_status | awk -F ',' '{print $3}')
if [[ $update_avail == "true" ]]; then if [[ $update_avail == "true" ]]; then
if ! cli -c 'app chart_release upgrade release_name=''"'"$app_name"'"' &> /dev/null ; then if ! cli -c 'app chart_release upgrade release_name=''"'"$app_name"'"' &> /dev/null ; then
echo "Fail Trigger - Debugging" echo "Fail Trigger - Debugging"
before_loop=$(head -n 1 temp.txt) before_loop=$(head -n 1 all_app_status)
current_loop=0 current_loop=0
until [[ "$(grep "^$app_name," temp.txt | awk -F ',' '{print $3}')" != "$update_avail" ]] # Wait for a specific change to app status, or 3 refreshes of the file to go by. until [[ "$(grep "^$app_name," all_app_status | awk -F ',' '{print $3}')" != "$update_avail" ]] # Wait for a specific change to app status, or 3 refreshes of the file to go by.
do do
if [[ $current_loop -gt 2 ]]; then if [[ $current_loop -gt 2 ]]; then
cli -c 'app chart_release upgrade release_name=''"'"$app_name"'"' &> /dev/null || return 1 # After waiting, attempt an update once more, if fails, return error code cli -c 'app chart_release upgrade release_name=''"'"$app_name"'"' &> /dev/null || return 1 # After waiting, attempt an update once more, if fails, return error code
elif ! echo -e "$(head -n 1 temp.txt)" | grep -qs ^"$before_loop" ; then # The file has been updated, but nothing changed specifically for the app. elif ! echo -e "$(head -n 1 all_app_status)" | grep -qs ^"$before_loop" ; then # The file has been updated, but nothing changed specifically for the app.
before_loop=$(head -n 1 temp.txt) before_loop=$(head -n 1 all_app_status)
((current_loop++)) ((current_loop++))
fi fi
sleep 1 sleep 1
@ -162,14 +162,14 @@ stop_app(){
count=0 count=0
while [[ "$status" != "STOPPED" ]] while [[ "$status" != "STOPPED" ]]
do do
status=$( grep "^$app_name," temp.txt | awk -F ',' '{print $2}') status=$( grep "^$app_name," all_app_status | awk -F ',' '{print $2}')
if [[ $count -gt 2 ]]; then # If failed to stop app 3 times, return failure to parent shell if [[ $count -gt 2 ]]; then # If failed to stop app 3 times, return failure to parent shell
return 1 return 1
elif ! cli -c 'app chart_release scale release_name='\""$app_name"\"\ 'scale_options={"replica_count": 0}' &> /dev/null ; then elif ! cli -c 'app chart_release scale release_name='\""$app_name"\"\ 'scale_options={"replica_count": 0}' &> /dev/null ; then
echo "Fail Trigger Stop - Debugging" echo "Fail Trigger Stop - Debugging"
before_loop=$(head -n 1 temp.txt) before_loop=$(head -n 1 all_app_status)
((count++)) ((count++))
until [[ $(head -n 1 temp.txt) != "$before_loop" ]] # Upon failure, wait for status update before continuing until [[ $(head -n 1 all_app_status) != "$before_loop" ]] # Upon failure, wait for status update before continuing
do do
sleep 1 sleep 1
done done
@ -187,17 +187,17 @@ count=0
if [[ $rollback == "true" || "$startstatus" == "STOPPED" ]]; then if [[ $rollback == "true" || "$startstatus" == "STOPPED" ]]; then
while true while true
do do
status=$(grep "^$app_name," temp.txt | awk -F ',' '{print $2}') status=$(grep "^$app_name," all_app_status | awk -F ',' '{print $2}')
if [[ $count -lt 1 && $status == "ACTIVE" && "$(grep "^$app_name," deploying | awk -F ',' '{print $2}')" != "DEPLOYING" ]]; then # If status shows up as Active or Stopped on the first check, verify that. Otherwise it may be a false report.. if [[ $count -lt 1 && $status == "ACTIVE" && "$(grep "^$app_name," deploying | awk -F ',' '{print $2}')" != "DEPLOYING" ]]; then # If status shows up as Active or Stopped on the first check, verify that. Otherwise it may be a false report..
[[ "$verbose" == "true" ]] && echo_array+=("Verifying $status..") [[ "$verbose" == "true" ]] && echo_array+=("Verifying $status..")
before_loop=$(head -n 1 temp.txt) before_loop=$(head -n 1 all_app_status)
current_loop=0 current_loop=0
until [[ "$status" != "ACTIVE" || $current_loop -gt 3 ]] # Wait for a specific change to app status, or 3 refreshes of the file to go by. until [[ "$status" != "ACTIVE" || $current_loop -gt 3 ]] # Wait for a specific change to app status, or 3 refreshes of the file to go by.
do do
status=$( grep "^$app_name," temp.txt | awk -F ',' '{print $2}') status=$( grep "^$app_name," all_app_status | awk -F ',' '{print $2}')
sleep 1 sleep 1
if ! echo -e "$(head -n 1 temp.txt)" | grep -qs ^"$before_loop" ; then if ! echo -e "$(head -n 1 all_app_status)" | grep -qs ^"$before_loop" ; then
before_loop=$(head -n 1 temp.txt) before_loop=$(head -n 1 all_app_status)
((current_loop++)) ((current_loop++))
fi fi
done done