Keychain is an interface for resolving an image reference to a credential.
| 41 | |
| 42 | // Keychain is an interface for resolving an image reference to a credential. |
| 43 | type Keychain interface { |
| 44 | // Resolve looks up the most appropriate credential for the specified target. |
| 45 | Resolve(Resource) (Authenticator, error) |
| 46 | } |
| 47 | |
| 48 | // ContextKeychain is like Keychain, but allows for context to be passed in. |
| 49 | type ContextKeychain interface { |
no outgoing calls
no test coverage detected
searching dependent graphs…