We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a594ca4 commit a22c5c8Copy full SHA for a22c5c8
pkg/oci/repository.go
@@ -143,7 +143,8 @@ func (c *Client) setupCertificates(ctx context.Context) error {
143
}
144
145
func (c *Client) constructTLSRoundTripper() http.RoundTripper {
146
- tlsConfig := &tls.Config{} //nolint:gosec // must provide lower version for quay.io
+ // nolint:gosec // must provide lower version for quay.io
147
+ tlsConfig := &tls.Config{}
148
caCertPool := x509.NewCertPool()
149
caCertPool.AppendCertsFromPEM(c.ca)
150
0 commit comments