Skip to content

Commit a8ca179

Browse files
mfojtiksoltysh
authored andcommitted
plumb the dockerutils to deal with two auth config types
1 parent d13e9a4 commit a8ca179

File tree

1 file changed

+13
-4
lines changed

1 file changed

+13
-4
lines changed

pkg/build/builder/dockerutil.go

+13-4
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"strings"
1414
"time"
1515

16-
dockertypes "github.com/docker/docker/api/types"
16+
enginetypes "github.com/docker/engine-api/types"
1717
docker "github.com/fsouza/go-dockerclient"
1818
utilruntime "k8s.io/apimachinery/pkg/util/runtime"
1919

@@ -234,13 +234,22 @@ func buildDirectImage(dir string, ignoreFailures bool, opts *docker.BuildImageOp
234234
Email: v.Email,
235235
}
236236
}
237+
237238
keyring := credentialprovider.BasicDockerKeyring{}
238239
keyring.Add(keys)
239-
e.AuthFn = func(name string) ([]dockertypes.AuthConfig, bool) {
240+
e.AuthFn = func(name string) ([]enginetypes.AuthConfig, bool) {
240241
authConfs, found := keyring.Lookup(name)
241-
var out []dockertypes.AuthConfig
242+
var out []enginetypes.AuthConfig
242243
for _, conf := range authConfs {
243-
out = append(out, conf.AuthConfig)
244+
c := enginetypes.AuthConfig{
245+
Username: conf.Username,
246+
Password: conf.Password,
247+
Email: conf.Email,
248+
ServerAddress: conf.ServerAddress,
249+
IdentityToken: conf.IdentityToken,
250+
RegistryToken: conf.RegistryToken,
251+
}
252+
out = append(out, c)
244253
}
245254
return out, found
246255
}

0 commit comments

Comments
 (0)