mirror of
https://gitea.com/Lydanne/buildx.git
synced 2025-07-10 05:27:07 +08:00
vendor: github.com/moby/buildkit c9ee8491d74f (master)
full diff:
- https://github.com/containerd/containerd/compare/v1.7.8...v1.7.9
- 5ae9b23c40...c9ee8491d7
Signed-off-by: CrazyMax <1951866+crazy-max@users.noreply.github.com>
This commit is contained in:
1
vendor/github.com/moby/buildkit/session/auth/authprovider/authconfig.go
generated
vendored
1
vendor/github.com/moby/buildkit/session/auth/authprovider/authconfig.go
generated
vendored
@ -2,6 +2,7 @@ package authprovider
|
||||
|
||||
type AuthTLSConfig struct {
|
||||
RootCAs []string
|
||||
Insecure bool
|
||||
KeyPairs []TLSKeyPair
|
||||
}
|
||||
|
||||
|
3
vendor/github.com/moby/buildkit/session/auth/authprovider/authprovider.go
generated
vendored
3
vendor/github.com/moby/buildkit/session/auth/authprovider/authprovider.go
generated
vendored
@ -178,6 +178,9 @@ func (ap *authProvider) tlsConfig(host string) (*tls.Config, error) {
|
||||
}
|
||||
tc.Certificates = append(tc.Certificates, cert)
|
||||
}
|
||||
if c.Insecure {
|
||||
tc.InsecureSkipVerify = true
|
||||
}
|
||||
return tc, nil
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user