global
This commit is contained in:
parent
96a412387c
commit
53a7048dc4
@ -1,13 +1,14 @@
|
||||
#!/bin/bash
|
||||
|
||||
current_updates=0
|
||||
|
||||
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)
|
||||
[[ -z $array ]] && echo -e "\nThere are no updates available" && return 0 || echo -e "\n${#array[@]} update(s) available"
|
||||
[[ -z $timeout ]] && echo -e "\nDefault Timeout: 500" && timeout=500 || echo -e "\nCustom Timeout: $timeout"
|
||||
[[ "$timeout" -le 120 ]] && echo "Warning: Your timeout is set low and may lead to premature rollbacks or skips"
|
||||
|
||||
update_limit=2
|
||||
current_updates=0
|
||||
|
||||
for i in "${array[@]}"
|
||||
do
|
||||
update_apps "$i" &
|
||||
|
Loading…
Reference in New Issue
Block a user