imagestreammapping

package
v1.3.1 Latest Latest
Warning

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

Go to latest
Published: Oct 14, 2016 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type REST

type REST struct {
	// contains filtered or unexported fields
}

REST implements the RESTStorage interface in terms of an image registry and image stream registry. It only supports the Create method and is used to simplify adding a new Image and tag to an ImageStream.

func NewREST

func NewREST(imageRegistry image.Registry, imageStreamRegistry imagestream.Registry, defaultRegistry api.DefaultRegistry) *REST

NewREST returns a new REST.

func (*REST) Create

func (s *REST) Create(ctx kapi.Context, obj runtime.Object) (runtime.Object, error)

Create registers a new image (if it doesn't exist) and updates the specified ImageStream's tags. If attempts to update the ImageStream fail with a resource conflict, the update will be retried if the newer ImageStream has no tag diffs from the previous state. If tag diffs are detected, the conflict error is returned.

func (*REST) New

func (r *REST) New() runtime.Object

New returns a new ImageStreamMapping for use with Create.

type Registry

type Registry interface {
	// CreateImageStreamMapping creates a new image stream mapping.
	CreateImageStreamMapping(ctx kapi.Context, mapping *api.ImageStreamMapping) (*unversioned.Status, error)
}

Registry is an interface for things that know how to store ImageStreamMapping 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 {
	Create(ctx kapi.Context, obj runtime.Object) (runtime.Object, error)
}

Storage is an interface for a standard REST Storage backend

type Strategy

type Strategy struct {
	runtime.ObjectTyper
	kapi.NameGenerator
	// contains filtered or unexported fields
}

Strategy implements behavior for image stream mappings.

func NewStrategy added in v1.3.0

func NewStrategy(defaultRegistry api.DefaultRegistry) Strategy

Strategy is the default logic that applies when creating ImageStreamMapping objects via the REST API.

func (Strategy) Canonicalize added in v1.3.0

func (s Strategy) Canonicalize(obj runtime.Object)

Canonicalize normalizes the object after validation.

func (Strategy) NamespaceScoped added in v1.3.0

func (s Strategy) NamespaceScoped() bool

NamespaceScoped is true for image stream mappings.

func (Strategy) PrepareForCreate added in v1.3.0

func (s Strategy) PrepareForCreate(obj runtime.Object)

PrepareForCreate clears fields that are not allowed to be set by end users on creation.

func (Strategy) Validate added in v1.3.0

func (s Strategy) Validate(ctx kapi.Context, obj runtime.Object) field.ErrorList

Validate validates a new ImageStreamMapping.

Jump to

Keyboard shortcuts

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