diff --git a/pkg/utils/image.go b/pkg/utils/image.go index 33edea19c..a5d9bb1f1 100644 --- a/pkg/utils/image.go +++ b/pkg/utils/image.go @@ -39,6 +39,7 @@ func ReadImageFromURL(ctx context.Context, url string) ([]byte, error) { client := &http.Client{ Transport: &http.Transport{ // ignore insecure certificates TLSClientConfig: &tls.Config{InsecureSkipVerify: true}, + Proxy: http.ProxyFromEnvironment, }, Timeout: imageGetTimeout,