Documentation ¶
Overview ¶
This package has types for dealing with image registries (e.g., quay.io, DockerHub, Google Container Registry, ..).
Index ¶
Constants ¶
const ( LabelRequestKind = "kind" RequestKindTags = "tags" RequestKindMetadata = "metadata" )
Variables ¶
This section is empty.
Functions ¶
func GetGCPOauthToken ¶
Types ¶
type Client ¶
type Client interface { Tags(context.Context) ([]string, error) Manifest(ctx context.Context, ref string) (image.Info, error) }
Client is a remote registry client for a particular image repository (e.g., for quay.io/weaveworks/flux). It is an interface so we can wrap it in instrumentation, write fake implementations, and so on.
func NewInstrumentedClient ¶
type ClientFactory ¶
type ClientFactory interface {
ClientFor(image.CanonicalName, Credentials) (Client, error)
}
ClientFactory supplies Client implementations for a given repo, with credentials. This is an interface so we can provide fake implementations.
type Credentials ¶
type Credentials struct {
// contains filtered or unexported fields
}
Credentials to a (Docker) registry.
func NoCredentials ¶
func NoCredentials() Credentials
NoCredentials returns a usable but empty credentials object.
func ParseCredentials ¶
func ParseCredentials(from string, b []byte) (Credentials, error)
func (Credentials) Hosts ¶
func (cs Credentials) Hosts() []string
Hosts returns all of the hosts available in these credentials.
func (Credentials) Merge ¶
func (cs Credentials) Merge(c Credentials)
type ImageCreds ¶
type ImageCreds map[image.Name]Credentials
ImageCreds is a record of which images need which credentials, which is supplied to us (probably by interrogating the cluster)
type Registry ¶
type Registry interface { GetRepository(image.Name) ([]image.Info, error) GetImage(image.Ref) (image.Info, error) }
Registry is a store of image metadata.
func NewInstrumentedRegistry ¶
type Remote ¶
type Remote struct {
// contains filtered or unexported fields
}
type RemoteClientFactory ¶
type RemoteClientFactory struct { Logger log.Logger Limiters *middleware.RateLimiters Trace bool // contains filtered or unexported fields }
func (*RemoteClientFactory) ClientFor ¶
func (f *RemoteClientFactory) ClientFor(repo image.CanonicalName, creds Credentials) (Client, error)
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
This package implements an image metadata cache given a backing k-v store.
|
This package implements an image metadata cache given a backing k-v store. |