deploy

package
v0.0.1 Latest Latest
Warning

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

Go to latest
Published: Nov 5, 2014 License: Apache-2.0 Imports: 12 Imported by: 0

Documentation

Overview

Package deploy provides Registry interface and its RESTStorage implementation for storing Deployment api objects.

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func NewREST

func NewREST(registry Registry) apiserver.RESTStorage

NewREST creates a new REST backed by the given registry.

Types

type REST

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

REST is an implementation of RESTStorage for the api server.

func (*REST) Create

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

Create registers a given new Deployment instance to s.registry.

func (*REST) Delete

func (s *REST) Delete(ctx kapi.Context, id string) (<-chan runtime.Object, error)

Delete asynchronously deletes the Deployment specified by its id.

func (*REST) Get

func (s *REST) Get(ctx kapi.Context, id string) (runtime.Object, error)

Get obtains the Deployment specified by its id.

func (*REST) List

func (s *REST) List(ctx kapi.Context, selector, fields labels.Selector) (runtime.Object, error)

List obtains a list of Deployments that match selector.

func (*REST) New

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

New creates a new Deployment for use with Create and Update.

func (*REST) Update

func (s *REST) Update(ctx kapi.Context, obj runtime.Object) (<-chan runtime.Object, error)

Update replaces a given Deployment instance with an existing instance in s.registry.

func (*REST) Watch

func (s *REST) Watch(ctx kapi.Context, label, field labels.Selector, resourceVersion string) (watch.Interface, error)

Watch begins watching for new, changed, or deleted Deployments.

type Registry

type Registry interface {
	ListDeployments(ctx kapi.Context, selector labels.Selector) (*api.DeploymentList, error)
	GetDeployment(ctx kapi.Context, id string) (*api.Deployment, error)
	CreateDeployment(ctx kapi.Context, deployment *api.Deployment) error
	UpdateDeployment(ctx kapi.Context, deployment *api.Deployment) error
	DeleteDeployment(ctx kapi.Context, id string) error
	WatchDeployments(ctx kapi.Context, resourceVersion string, filter func(repo *api.Deployment) bool) (watch.Interface, error)
}

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

Jump to

Keyboard shortcuts

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