Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Strategy = imageStrategy{kapi.Scheme, kapi.SimpleNameGenerator}
Strategy is the default logic that applies when creating and updating Image objects via the REST API.
Functions ¶
Types ¶
type Registry ¶
type Registry interface { // ListImages obtains a list of images that match a selector. ListImages(ctx kapi.Context, selector labels.Selector) (*api.ImageList, error) // GetImage retrieves a specific image. GetImage(ctx kapi.Context, id string) (*api.Image, error) // CreateImage creates a new image. CreateImage(ctx kapi.Context, image *api.Image) error // DeleteImage deletes an image. DeleteImage(ctx kapi.Context, id string) error // WatchImages watches for new or deleted images. WatchImages(ctx kapi.Context, label labels.Selector, field fields.Selector, resourceVersion string) (watch.Interface, error) }
Registry is an interface for things that know how to store Image objects.
func NewRegistry ¶ added in v0.4.2
NewRegistry returns a new Registry interface for the given Storage. Any mismatched types will panic.
Click to show internal directories.
Click to hide internal directories.