image

package
v4.1.0+incompatible Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: May 1, 2019 License: Apache-2.0 Imports: 14 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Strategy = imageStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}

Strategy is the default logic that applies when creating and updating Image objects via the REST API.

Functions

This section is empty.

Types

type Registry

type Registry interface {
	// ListImages obtains a list of images that match a selector.
	ListImages(ctx context.Context, options *metainternal.ListOptions) (*imageapi.ImageList, error)
	// GetImage retrieves a specific image.
	GetImage(ctx context.Context, id string, options *metav1.GetOptions) (*imageapi.Image, error)
	// CreateImage creates a new image.
	CreateImage(ctx context.Context, image *imageapi.Image) error
	// DeleteImage deletes an image.
	DeleteImage(ctx context.Context, id string) error
	// WatchImages watches for new or deleted images.
	WatchImages(ctx context.Context, options *metainternal.ListOptions) (watch.Interface, error)
	// UpdateImage updates given image.
	UpdateImage(ctx context.Context, image *imageapi.Image) (*imageapi.Image, error)
}

Registry is an interface for things that know how to store Image objects.

func NewRegistry

func NewRegistry(s Storage) Registry

NewRegistry returns a new Registry interface for the given Storage. Any mismatched types will panic.

type Storage

type Storage interface {
	rest.GracefulDeleter
	rest.Lister
	rest.Getter
	rest.Watcher

	Create(ctx context.Context, obj runtime.Object, createValidation rest.ValidateObjectFunc, options *metav1.CreateOptions) (runtime.Object, error)
	Update(ctx context.Context, name string, objInfo rest.UpdatedObjectInfo, createValidation rest.ValidateObjectFunc, updateValidation rest.ValidateObjectUpdateFunc, forceAllowCreate bool, options *metav1.UpdateOptions) (runtime.Object, bool, error)
}

Storage is an interface for a standard REST Storage backend

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL