imagestreammapping

package
v1.0.0 Latest Latest
Warning

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

Go to latest
Published: Jun 18, 2015 License: Apache-2.0 Imports: 11 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

View Source
var Strategy = imageStreamMappingStrategy{kapi.Scheme, kapi.SimpleNameGenerator}

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

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) *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.

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) (*kapi.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

Jump to

Keyboard shortcuts

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