diff --git a/src/internal/packager/images/push.go b/src/internal/packager/images/push.go index 235a85d7b9..bea71bddd8 100644 --- a/src/internal/packager/images/push.go +++ b/src/internal/packager/images/push.go @@ -51,6 +51,7 @@ func (i *ImageConfig) PushToZarfRegistry() error { httpTransport := http.DefaultTransport.(*http.Transport).Clone() httpTransport.TLSClientConfig.InsecureSkipVerify = i.Insecure + // TODO (@WSTARR) This is set to match the TLSHandshakeTimeout to potentially mitigate effects of https://github.com/defenseunicorns/zarf/issues/1444 httpTransport.ResponseHeaderTimeout = 10 * time.Second progressBar := message.NewProgressBar(totalSize, fmt.Sprintf("Pushing %d images to the zarf registry", len(i.ImageList))) defer progressBar.Stop()