Documentation ¶
Overview ¶
Package store implements a credential store that is capable of storing both plain Docker credentials as well as GCR access and refresh tokens.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type GCRAuth ¶
type GCRAuth struct {
// contains filtered or unexported fields
}
A GCRAuth provides access to tokens from a prior login.
func (*GCRAuth) TokenSource ¶
func (a *GCRAuth) TokenSource(ctx context.Context) oauth2.TokenSource
TokenSource returns an oauth2.TokenSource that retrieve tokens from GCR credentials using the provided context. It will returns the current access token stored in the credentials, and refresh it when it expires, but it won't update the credentials with the new access token.
type GCRCredStore ¶
type GCRCredStore interface { GetGCRAuth() (*GCRAuth, error) SetGCRAuth(tok *oauth2.Token) error DeleteGCRAuth() error }
GCRCredStore describes the interface for a store capable of storing both GCR's credentials (OAuth2 access/refresh tokens) as well as generic Docker credentials.
func DefaultGCRCredStore ¶
func DefaultGCRCredStore() (GCRCredStore, error)
DefaultGCRCredStore returns a GCRCredStore which is backed by a file.
func NewGCRCredStore ¶
func NewGCRCredStore(path string) GCRCredStore
NewGCRCredStore returns a GCRCredStore which is backed by the given file.