Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var ErrDoesNotExist notFoundError = "reference does not exist"
ErrDoesNotExist is returned if a reference is not found in the store.
Functions ¶
This section is empty.
Types ¶
type Association ¶
An Association is a tuple associating a reference with an image ID.
type Store ¶
type Store interface {
References(id digest.Digest) []reference.Named
ReferencesByName(ref reference.Named) []Association
AddTag(ref reference.Named, id digest.Digest, force bool) error
AddDigest(ref reference.Canonical, id digest.Digest, force bool) error
Delete(ref reference.Named) (bool, error)
Get(ref reference.Named) (digest.Digest, error)
}
Store provides the set of methods which can operate on a reference store.
func NewReferenceStore ¶
NewReferenceStore creates a new reference store, tied to a file path where the set of references are serialized in JSON format.
Click to show internal directories.
Click to hide internal directories.