From e4f7c6df7ef0d5215458265d80402e63b68253d3 Mon Sep 17 00:00:00 2001 From: david-newhook <31928700+dnewhook@users.noreply.github.com> Date: Thu, 27 May 2021 20:01:02 +0200 Subject: [PATCH] Adding support for proxy when preparing registry layers Signed-off-by: david-newhook <31928700+dnewhook@users.noreply.github.com> --- pkg/registry/client.go | 1 + 1 file changed, 1 insertion(+) diff --git a/pkg/registry/client.go b/pkg/registry/client.go index 65ccbfe..3595718 100644 --- a/pkg/registry/client.go +++ b/pkg/registry/client.go @@ -47,6 +47,7 @@ func (cf *clientFactory) Get() Client { RootCAs: cf.tlsConfig.RootCAs, InsecureSkipVerify: cf.tlsConfig.InsecureSkipVerify, }, + Proxy: http.ProxyFromEnvironment, }}, } })