Skip to content

Commit 4715aa0

Browse files
authored
Cache enqueuer and controller-manager builder images (#2180)
1 parent 46a3cb3 commit 4715aa0

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

dev/registry.sh

+6
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,12 @@ elif [ "$cmd" = "update" ]; then
251251
if [[ " ${images_to_build[@]} " =~ " async-gateway " ]]; then
252252
cache_builder async-gateway
253253
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+
fi
254260

255261
if command -v parallel &> /dev/null && [ -n "${NUM_BUILD_PROCS+set}" ] && [ "$NUM_BUILD_PROCS" != "1" ]; then
256262
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

Comments
 (0)