Documentation ¶
Overview ¶
Package registryrepository provides access to an OCI image registry
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Registry ¶
type Registry interface { // ImageExist check if an image is available ImageExist(ref string) (bool, error) // Push pushes an image to the registry Push(ref string, image v1.Image) error // Pull pulls an image Pull(ref string) (v1.Image, error) // GetURL evaluates the URL of image GetURL() string }
Registry is the interface to access an OCI image registry.
func NewContainerRegistry ¶
NewContainerRegistry returns an implementation of Registry.
Click to show internal directories.
Click to hide internal directories.