Skip to content

Commit b24e7f8

Browse files
committed
Fix setting ServerAddress property in NativeStore
This will return the ServerAddress property when using the NativeStore. This happens when you use docker credential helpers, not the credential store. The reason this fix is needed is because it needs to be propagated properly down towards `moby/moby` project in the following logic: ```golang func authorizationCredsFromAuthConfig(authConfig registrytypes.AuthConfig) docker.AuthorizerOpt { cfgHost := registry.ConvertToHostname(authConfig.ServerAddress) if cfgHost == "" || cfgHost == registry.IndexHostname { cfgHost = registry.DefaultRegistryHost } return docker.WithAuthCreds(func(host string) (string, string, error) { if cfgHost != host { logrus.WithFields(logrus.Fields{ "host": host, "cfgHost": cfgHost, }).Warn("Host doesn't match") return "", "", nil } if authConfig.IdentityToken != "" { return "", authConfig.IdentityToken, nil } return authConfig.Username, authConfig.Password, nil }) } ``` This logic resides in the following file : `daemon/containerd/resolver.go` . In the case when using the containerd storage feature when setting the `cfgHost` variable from the `authConfig.ServerAddress` it will always be empty. Since it will never be returned from the NativeStore currently. Therefore Docker Hub images will work fine, but anything else will fail since the `cfgHost` will always be the `registry.DefaultRegistryHost`. Signed-off-by: Eric Bode <[email protected]>
1 parent a9ae9b3 commit b24e7f8

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

cli/config/credentials/native_store.go

+4
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ func (c *nativeStore) Get(serverAddress string) (types.AuthConfig, error) {
5151
auth.Username = creds.Username
5252
auth.IdentityToken = creds.IdentityToken
5353
auth.Password = creds.Password
54+
auth.ServerAddress = creds.ServerAddress
5455

5556
return auth, nil
5657
}
@@ -76,6 +77,9 @@ func (c *nativeStore) GetAll() (map[string]types.AuthConfig, error) {
7677
ac.Username = creds.Username
7778
ac.Password = creds.Password
7879
ac.IdentityToken = creds.IdentityToken
80+
if ac.ServerAddress == "" {
81+
ac.ServerAddress = creds.ServerAddress
82+
}
7983
authConfigs[registry] = ac
8084
}
8185

cli/config/credentials/native_store_test.go

+5-3
Original file line numberDiff line numberDiff line change
@@ -145,9 +145,10 @@ func TestNativeStoreGet(t *testing.T) {
145145
assert.NilError(t, err)
146146

147147
expected := types.AuthConfig{
148-
Username: "foo",
149-
Password: "bar",
150-
148+
Username: "foo",
149+
Password: "bar",
150+
151+
ServerAddress: validServerAddress,
151152
}
152153
assert.Check(t, is.DeepEqual(expected, actual))
153154
}
@@ -169,6 +170,7 @@ func TestNativeStoreGetIdentityToken(t *testing.T) {
169170
expected := types.AuthConfig{
170171
IdentityToken: "abcd1234",
171172
173+
ServerAddress: validServerAddress2,
172174
}
173175
assert.Check(t, is.DeepEqual(expected, actual))
174176
}

0 commit comments

Comments
 (0)