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 0e38eec commit e35e4c6Copy full SHA for e35e4c6
cli/config/configfile/file.go
@@ -290,6 +290,9 @@ func (configFile *ConfigFile) GetCredentialsStore(registryHostname string) crede
290
store := credentials.NewFileStore(configFile)
291
292
if helper := getConfiguredCredentialStore(configFile, registryHostname); helper != "" {
293
+ if helper == "filestore" {
294
+ return store
295
+ }
296
store = newNativeStore(configFile, helper)
297
}
298
0 commit comments