Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for UnionDockerKeyring (0.13 sec)

  1. pkg/credentialprovider/keyring.go

    func (f *FakeKeyring) Lookup(image string) ([]AuthConfig, bool) {
    	return f.auth, f.ok
    }
    
    // UnionDockerKeyring delegates to a set of keyrings.
    type UnionDockerKeyring []DockerKeyring
    
    // Lookup implements the DockerKeyring method for fetching credentials based on image name.
    // return each credentials
    func (k UnionDockerKeyring) Lookup(image string) ([]AuthConfig, bool) {
    	authConfigs := []AuthConfig{}
    	for _, subKeyring := range k {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 9.2K bytes
    - Viewed (0)
Back to top