364 lines
15 KiB
Bash
Executable File
364 lines
15 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
|
|
commander(){
|
|
mapfile -t array < <(cli -m csv -c 'app chart_release query name,update_available,human_version,human_latest_version,container_images_update_available,status' | tr -d " \t\r" | grep -E ",true($|,)" | sort)
|
|
echo -e "🅄 🄿 🄳 🄰 🅃 🄴 🅂"
|
|
[[ -z ${array[*]} ]] && echo "There are no updates available" && echo -e "\n" && return 0 || echo "Update(s) Available: ${#array[@]}"
|
|
echo "Asynchronous Updates: $update_limit"
|
|
[[ -z $timeout ]] && echo "Default Timeout: 500" && timeout=500 || echo "Custom Timeout: $timeout"
|
|
[[ "$timeout" -le 120 ]] && echo "Warning: Your timeout is set low and may lead to premature rollbacks or skips"
|
|
[[ $ignore_image_update == "true" ]] && echo "Image Updates: Disabled" || echo "Image Updates: Enabled"
|
|
pool=$(cli -c 'app kubernetes config' | grep -E "dataset\s\|" | awk -F '|' '{print $3}' | awk -F '/' '{print $1}' | tr -d " \t\n\r")
|
|
|
|
index=0
|
|
for app in "${array[@]}"
|
|
do
|
|
app_name=$(echo "$app" | awk -F ',' '{print $1}') #print out first catagory, name.
|
|
old_app_ver=$(echo "$app" | awk -F ',' '{print $4}' | awk -F '_' '{print $1}' | awk -F '.' '{print $1}') #previous/current Application MAJOR Version
|
|
new_app_ver=$(echo "$app" | awk -F ',' '{print $5}' | awk -F '_' '{print $1}' | awk -F '.' '{print $1}') #new Application MAJOR Version
|
|
old_chart_ver=$(echo "$app" | awk -F ',' '{print $4}' | awk -F '_' '{print $2}' | awk -F '.' '{print $1}') # Old Chart MAJOR version
|
|
new_chart_ver=$(echo "$app" | awk -F ',' '{print $5}' | awk -F '_' '{print $2}' | awk -F '.' '{print $1}') # New Chart MAJOR version
|
|
diff_app=$(diff <(echo "$old_app_ver") <(echo "$new_app_ver")) #caluclating difference in major app versions
|
|
diff_chart=$(diff <(echo "$old_chart_ver") <(echo "$new_chart_ver")) #caluclating difference in Chart versions
|
|
old_full_ver=$(echo "$app" | awk -F ',' '{print $4}') #Upgraded From
|
|
new_full_ver=$(echo "$app" | awk -F ',' '{print $5}') #Upraded To
|
|
|
|
#Skip application if its on ignore list
|
|
if printf '%s\0' "${ignore[@]}" | grep -iFxqz "${app_name}" ; then
|
|
echo -e "\n$app_name\nIgnored, skipping"
|
|
unset "array[$index]"
|
|
#Skip appliaction if major update and not ignoreing major versions
|
|
elif [[ "$diff_app" != "$diff_chart" && $update_apps == "true" ]] ; then
|
|
echo -e "\n$app_name\nMajor Release, update manually"
|
|
unset "array[$index]"
|
|
# Skip update if application previously failed on this exact update version
|
|
elif grep -qs "^$app_name," failed 2>/dev/null; then
|
|
failed_ver=$(grep "^$app_name," failed | awk -F ',' '{print $2}')
|
|
if [[ "$failed_ver" == "$new_full_ver" ]] ; then
|
|
echo -e "\n$app_name\nSkipping previously failed version:\n$new_full_ver"
|
|
unset "array[$index]"
|
|
else
|
|
sed -i /"$app_name",/d failed
|
|
fi
|
|
#Skip Image updates if ignore image updates is set to true
|
|
elif [[ $old_full_ver == "$new_full_ver" && $ignore_image_update == "true" ]]; then
|
|
echo -e "\n$app_name\nImage update, skipping.."
|
|
unset "array[$index]"
|
|
fi
|
|
((index++))
|
|
done
|
|
array=("${array[@]}")
|
|
[[ ${#array[@]} == 0 ]] && echo && echo && return
|
|
|
|
|
|
index=0
|
|
while_count=0
|
|
rm deploying 2>/dev/null
|
|
rm finished 2>/dev/null
|
|
while [[ ${#processes[@]} != 0 || $(wc -l finished 2>/dev/null | awk '{ print $1 }') -lt "${#array[@]}" ]]
|
|
do
|
|
if while_status=$(cli -m csv -c 'app chart_release query name,update_available,human_version,human_latest_version,container_images_update_available,status' 2>/dev/null) ; then
|
|
((while_count++))
|
|
[[ -z $while_status ]] && continue || echo -e "$while_count\n$while_status" > all_app_status
|
|
mapfile -t deploying_check < <(grep ",DEPLOYING," all_app_status)
|
|
for i in "${deploying_check[@]}"
|
|
do
|
|
app_name=$(echo "$i" | awk -F ',' '{print $1}')
|
|
[[ ! -e deploying ]] && touch deploying
|
|
if ! grep -qs "$app_name,DEPLOYING" deploying; then
|
|
echo "$app_name,DEPLOYING" >> deploying
|
|
fi
|
|
done
|
|
else
|
|
echo "Middlewared timed out. Consider setting a lower number for async applications"
|
|
continue
|
|
fi
|
|
count=0
|
|
for proc in "${processes[@]}"
|
|
do
|
|
kill -0 "$proc" &> /dev/null || unset "processes[$count]"
|
|
((count++))
|
|
done
|
|
processes=("${processes[@]}")
|
|
if [[ $index -lt ${#array[@]} && "${#processes[@]}" -lt "$update_limit" ]]; then
|
|
pre_process "${array[$index]}" &
|
|
processes+=($!)
|
|
((index++))
|
|
else
|
|
sleep 3
|
|
fi
|
|
done
|
|
rm deploying 2>/dev/null
|
|
rm finished 2>/dev/null
|
|
echo
|
|
echo
|
|
}
|
|
export -f commander
|
|
|
|
|
|
pre_process(){
|
|
app_name=$(echo "${array[$index]}" | awk -F ',' '{print $1}') #print out first catagory, name.
|
|
startstatus=$(echo "${array[$index]}" | awk -F ',' '{print $2}') #status of the app: STOPPED / DEPLOYING / ACTIVE
|
|
old_full_ver=$(echo "${array[$index]}" | awk -F ',' '{print $4}') #Upgraded From
|
|
new_full_ver=$(echo "${array[$index]}" | awk -F ',' '{print $5}') #Upraded To
|
|
rollback_version=$(echo "${array[$index]}" | awk -F ',' '{print $4}' | awk -F '_' '{print $2}')
|
|
|
|
|
|
# Check if app is external services, append outcome to external_services file
|
|
[[ ! -e external_services ]] && touch external_services
|
|
if ! grep -qs "^$app_name," external_services ; then
|
|
if ! grep -qs "/external-service" /mnt/"$pool"/ix-applications/releases/"$app_name"/charts/"$(find /mnt/"$pool"/ix-applications/releases/"$app_name"/charts/ -maxdepth 1 -type d -printf '%P\n' | sort -r | head -n 1)"/Chart.yaml; then
|
|
echo "$app_name,false" >> external_services
|
|
else
|
|
echo "$app_name,true" >> external_services
|
|
fi
|
|
fi
|
|
|
|
# If application is deploying prior to updating, attempt to wait for it to finish
|
|
if [[ "$startstatus" == "DEPLOYING" ]]; then
|
|
SECONDS=0
|
|
while [[ "$status" == "DEPLOYING" ]]
|
|
do
|
|
status=$(grep "^$app_name," all_app_status | awk -F ',' '{print $2}')
|
|
if [[ "$SECONDS" -ge "$timeout" ]]; then
|
|
echo_array+=("Application is stuck Deploying, Skipping to avoid damage")
|
|
echo_array
|
|
return
|
|
fi
|
|
sleep 5
|
|
done
|
|
fi
|
|
|
|
# If user is using -S, stop app prior to updating
|
|
echo_array+=("\n$app_name")
|
|
if [[ $stop_before_update == "true" && "$startstatus" != "STOPPED" ]]; then # Check to see if user is using -S or not
|
|
[[ "$verbose" == "true" ]] && echo_array+=("Stopping prior to update..")
|
|
if stop_app ; then
|
|
echo_array+=("Stopped")
|
|
else
|
|
echo_array+=("Error: Failed to stop $app_name")
|
|
echo_array
|
|
return 1
|
|
fi
|
|
fi
|
|
|
|
# Send app through update function
|
|
[[ "$verbose" == "true" ]] && echo_array+=("Updating..")
|
|
if update_app ;then
|
|
if [[ $old_full_ver == "$new_full_ver" ]]; then
|
|
echo_array+=("Updated Container Image")
|
|
else
|
|
echo_array+=("Updated\n$old_full_ver\n$new_full_ver")
|
|
fi
|
|
else
|
|
echo_array+=("Failed to update\nManual intervention may be required")
|
|
echo_array
|
|
return
|
|
fi
|
|
|
|
# If app is external services, do not send for post processing
|
|
if grep -qs "^$app_name,true" external_services ; then
|
|
echo_array
|
|
return
|
|
# If app is container image update, dont send for post processing
|
|
elif [[ $old_full_ver == "$new_full_ver" ]]; then
|
|
echo_array
|
|
return
|
|
else
|
|
post_process
|
|
fi
|
|
}
|
|
export -f pre_process
|
|
|
|
|
|
post_process(){
|
|
SECONDS=0
|
|
count=0
|
|
if [[ $rollback == "true" || "$startstatus" == "STOPPED" ]]; then
|
|
while true
|
|
do
|
|
|
|
# If app reports ACTIVE right away, assume its a false positive and wait for it to change, or trust it after 5 updates to all_app_status
|
|
status=$(grep "^$app_name," all_app_status | awk -F ',' '{print $2}')
|
|
if [[ $count -lt 1 && $status == "ACTIVE" && "$(grep "^$app_name," deploying 2>/dev/null | 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..")
|
|
before_loop=$(head -n 1 all_app_status)
|
|
current_loop=0
|
|
until [[ "$status" != "ACTIVE" || $current_loop -gt 4 ]] # Wait for a specific change to app status, or 3 refreshes of the file to go by.
|
|
do
|
|
status=$(grep "^$app_name," all_app_status | awk -F ',' '{print $2}')
|
|
sleep 1
|
|
if ! echo -e "$(head -n 1 all_app_status)" | grep -qs ^"$before_loop" ; then
|
|
before_loop=$(head -n 1 all_app_status)
|
|
((current_loop++))
|
|
fi
|
|
done
|
|
fi
|
|
(( count++ ))
|
|
|
|
if [[ "$status" == "ACTIVE" ]]; then
|
|
if [[ "$startstatus" == "STOPPED" ]]; then
|
|
[[ "$verbose" == "true" ]] && echo_array+=("Returing to STOPPED state..")
|
|
if stop_app ; then
|
|
echo_array+=("Stopped")
|
|
else
|
|
echo_array+=("Error: Failed to stop $app_name")
|
|
echo_array
|
|
return 1
|
|
fi
|
|
break
|
|
else
|
|
echo_array+=("Active")
|
|
break
|
|
fi
|
|
elif [[ "$SECONDS" -ge "$timeout" ]]; then
|
|
if [[ $rollback == "true" ]]; then
|
|
if [[ "$failed" != "true" ]]; then
|
|
echo "$app_name,$new_full_ver" >> failed
|
|
echo_array+=("Error: Run Time($SECONDS) for $app_name has exceeded Timeout($timeout)")
|
|
echo_array+=("If this is a slow starting application, set a higher timeout with -t")
|
|
echo_array+=("If this applicaion is always DEPLOYING, you can disable all probes under the Healthcheck Probes Liveness section in the edit configuration")
|
|
echo_array+=("Reverting update..")
|
|
if rollback_app ; then
|
|
echo_array+=("Rolled Back")
|
|
else
|
|
echo_array+=("Error: Failed to rollback $app_name\nAbandoning")
|
|
echo_array
|
|
return 1
|
|
fi
|
|
failed="true"
|
|
SECONDS=0
|
|
count=0
|
|
continue #run back post_process function if the app was stopped prior to update
|
|
else
|
|
echo_array+=("Error: Run Time($SECONDS) for $app_name has exceeded Timeout($timeout)")
|
|
echo_array+=("The application failed to be ACTIVE even after a rollback")
|
|
echo_array+=("Manual intervention is required\nStopping, then Abandoning")
|
|
if stop_app ; then
|
|
echo_array+=("Stopped")
|
|
else
|
|
echo_array+=("Error: Failed to stop $app_name")
|
|
echo_array
|
|
return 1
|
|
fi
|
|
break
|
|
fi
|
|
else
|
|
echo "$app_name,$new_full_ver" >> failed
|
|
echo_array+=("Error: Run Time($SECONDS) for $app_name has exceeded Timeout($timeout)")
|
|
echo_array+=("If this is a slow starting application, set a higher timeout with -t")
|
|
echo_array+=("If this applicaion is always DEPLOYING, you can disable all probes under the Healthcheck Probes Liveness section in the edit configuration")
|
|
echo_array+=("Manual intervention is required\nStopping, then Abandoning")
|
|
if stop_app ; then
|
|
echo_array+=("Stopped")
|
|
else
|
|
echo_array+=("Error: Failed to stop $app_name")
|
|
echo_array
|
|
return 1
|
|
fi
|
|
break
|
|
fi
|
|
else
|
|
[[ "$verbose" == "true" ]] && echo_array+=("Waiting $((timeout-SECONDS)) more seconds for $app_name to be ACTIVE")
|
|
sleep 5
|
|
continue
|
|
fi
|
|
done
|
|
fi
|
|
echo_array
|
|
}
|
|
export -f post_process
|
|
|
|
|
|
rollback_app(){
|
|
count=0
|
|
app_update_avail=$(grep "^$app_name," all_app_status | awk -F ',' '{print $3}')
|
|
while [[ $app_update_avail == "false" ]]
|
|
do
|
|
app_update_avail=$(grep "^$app_name," all_app_status | awk -F ',' '{print $3}')
|
|
if [[ $count -gt 2 ]]; then # If failed to rollback app 3 times, return failure to parent shell
|
|
return 1
|
|
elif ! cli -c "app chart_release rollback release_name=\"$app_name\" rollback_options={\"item_version\": \"$rollback_version\"}" &> /dev/null ; then
|
|
before_loop=$(head -n 1 all_app_status)
|
|
((count++))
|
|
until [[ $(head -n 1 all_app_status) != "$before_loop" ]] # Upon failure, wait for status update before continuing
|
|
do
|
|
sleep 1
|
|
done
|
|
else
|
|
break
|
|
fi
|
|
done
|
|
}
|
|
|
|
|
|
update_app(){
|
|
current_loop=0
|
|
while true
|
|
do
|
|
update_avail=$(grep "^$app_name," all_app_status | awk -F ',' '{print $3","$6}')
|
|
if [[ $update_avail =~ "true" ]]; then
|
|
if ! cli -c 'app chart_release upgrade release_name=''"'"$app_name"'"' &> /dev/null ; then
|
|
before_loop=$(head -n 1 all_app_status)
|
|
current_loop=0
|
|
until [[ "$(grep "^$app_name," all_app_status | awk -F ',' '{print $3","$6}')" != "$update_avail" ]] # Wait for a specific change to app status, or 3 refreshes of the file to go by.
|
|
do
|
|
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
|
|
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 all_app_status)
|
|
((current_loop++))
|
|
fi
|
|
sleep 1
|
|
done
|
|
fi
|
|
break
|
|
elif [[ ! $update_avail =~ "true" ]]; then
|
|
break
|
|
else
|
|
sleep 3
|
|
fi
|
|
done
|
|
}
|
|
export -f update_app
|
|
|
|
|
|
stop_app(){
|
|
count=0
|
|
while [[ "$status" != "STOPPED" ]]
|
|
do
|
|
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
|
|
return 1
|
|
elif ! cli -c 'app chart_release scale release_name='\""$app_name"\"\ 'scale_options={"replica_count": 0}' &> /dev/null ; then
|
|
before_loop=$(head -n 1 all_app_status)
|
|
((count++))
|
|
until [[ $(head -n 1 all_app_status) != "$before_loop" ]] # Upon failure, wait for status update before continuing
|
|
do
|
|
sleep 1
|
|
done
|
|
else
|
|
break
|
|
fi
|
|
done
|
|
}
|
|
export -f stop_app
|
|
|
|
|
|
echo_array(){
|
|
#Dump the echo_array, ensures all output is in a neat order.
|
|
for i in "${echo_array[@]}"
|
|
do
|
|
echo -e "$i"
|
|
done
|
|
final_check
|
|
}
|
|
export -f echo_array
|
|
|
|
|
|
final_check(){
|
|
[[ ! -e finished ]] && touch finished
|
|
echo "$app_name,finished" >> finished
|
|
}
|