Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions dev/registry.sh
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,12 @@ elif [ "$cmd" = "update" ]; then
if [[ " ${images_to_build[@]} " =~ " async-gateway " ]]; then
cache_builder async-gateway
fi
if [[ " ${images_to_build[@]} " =~ " enqueuer " ]]; then
cache_builder enqueuer
fi
if [[ " ${images_to_build[@]} " =~ " controller-manager " ]]; then
cache_builder controller-manager
fi

if command -v parallel &> /dev/null && [ -n "${NUM_BUILD_PROCS+set}" ] && [ "$NUM_BUILD_PROCS" != "1" ]; then
is_registry_logged_in=$is_registry_logged_in ROOT=$ROOT registry_push_url=$registry_push_url SHELL=$(type -p /bin/bash) parallel --will-cite --halt now,fail=1 --eta --jobs $NUM_BUILD_PROCS build_and_push "{}" ::: "${images_to_build[@]}"
Expand Down