We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 46a3cb3 commit 4715aa0Copy full SHA for 4715aa0
dev/registry.sh
@@ -251,6 +251,12 @@ elif [ "$cmd" = "update" ]; then
251
if [[ " ${images_to_build[@]} " =~ " async-gateway " ]]; then
252
cache_builder async-gateway
253
fi
254
+ if [[ " ${images_to_build[@]} " =~ " enqueuer " ]]; then
255
+ cache_builder enqueuer
256
+ fi
257
+ if [[ " ${images_to_build[@]} " =~ " controller-manager " ]]; then
258
+ cache_builder controller-manager
259
260
261
if command -v parallel &> /dev/null && [ -n "${NUM_BUILD_PROCS+set}" ] && [ "$NUM_BUILD_PROCS" != "1" ]; then
262
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[@]}"
0 commit comments