mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
36 lines
1.1 KiB
Go
36 lines
1.1 KiB
Go
|
package containerd
|
||
|
|
||
|
import (
|
||
|
"github.com/containerd/containerd/remotes"
|
||
|
"github.com/containerd/containerd/remotes/docker"
|
||
|
registrytypes "github.com/docker/docker/api/types/registry"
|
||
|
"github.com/docker/docker/registry"
|
||
|
"github.com/sirupsen/logrus"
|
||
|
)
|
||
|
|
||
|
func newResolverFromAuthConfig(authConfig *registrytypes.AuthConfig) remotes.Resolver {
|
||
|
opts := []docker.RegistryOpt{}
|
||
|
if authConfig != nil {
|
||
|
cfgHost := registry.ConvertToHostname(authConfig.ServerAddress)
|
||
|
if cfgHost == registry.IndexHostname {
|
||
|
cfgHost = registry.DefaultRegistryHost
|
||
|
}
|
||
|
authorizer := docker.NewDockerAuthorizer(docker.WithAuthCreds(func(host string) (string, string, error) {
|
||
|
if cfgHost != host {
|
||
|
logrus.WithField("host", host).WithField("cfgHost", cfgHost).Warn("Host doesn't match")
|
||
|
return "", "", nil
|
||
|
}
|
||
|
if authConfig.IdentityToken != "" {
|
||
|
return "", authConfig.IdentityToken, nil
|
||
|
}
|
||
|
return authConfig.Username, authConfig.Password, nil
|
||
|
}))
|
||
|
|
||
|
opts = append(opts, docker.WithAuthorizer(authorizer))
|
||
|
}
|
||
|
|
||
|
return docker.NewResolver(docker.ResolverOptions{
|
||
|
Hosts: docker.ConfigureDefaultRegistries(opts...),
|
||
|
})
|
||
|
}
|