From ebb8fb6f0a139a3f671cf24d291c1b9485231910 Mon Sep 17 00:00:00 2001 From: Sascha Grunert Date: Fri, 20 Mar 2026 09:41:50 +0100 Subject: [PATCH] Increase container image push workers from 3 to 5 Allows more arch-specific images to be pushed and signed concurrently during staging, reducing the image push phase duration. Signed-off-by: Sascha Grunert --- pkg/release/images.go | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pkg/release/images.go b/pkg/release/images.go index 17d0d2b7686..5d69c4c3558 100644 --- a/pkg/release/images.go +++ b/pkg/release/images.go @@ -113,9 +113,8 @@ func (*defaultImageImpl) VerifyImage(_ *sign.Signer, _ string) error { var tagRegex = regexp.MustCompile(`^.+/(.+):.+$`) // publishWorkers is the number of concurrent workers for pushing and -// signing arch-specific container images. Kept small to avoid -// overwhelming the registry or docker daemon. -const publishWorkers = 3 +// signing arch-specific container images. +const publishWorkers = 5 // tarballItem holds metadata collected for a single arch-specific image // tarball, used to decouple the collection phase from the push/sign phase.