kubernetesk8s.io/kubernetes/pkg/registry/pod/etcd Index | Files

package etcd

import "k8s.io/kubernetes/pkg/registry/pod/etcd"

Index

Functions

func NewREST

func NewREST(h tools.EtcdHelper) (*REST, *BindingREST, *StatusREST)

NewREST returns a RESTStorage object that will work against pods.

Types

type BindingREST

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

BindingREST implements the REST endpoint for binding pods to nodes when etcd is in use.

func (*BindingREST) Create

func (r *BindingREST) Create(ctx api.Context, obj runtime.Object) (out runtime.Object, err error)

Create ensures a pod is bound to a specific host.

func (*BindingREST) New

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

type REST

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

rest implements a RESTStorage for pods against etcd

func (*REST) Create

func (r *REST) Create(ctx api.Context, obj runtime.Object) (runtime.Object, error)

Create creates a pod based on a specification.

func (*REST) Delete

func (r *REST) Delete(ctx api.Context, name string) (runtime.Object, error)

Delete deletes an existing pod specified by its ID.

func (*REST) Get

func (r *REST) Get(ctx api.Context, name string) (runtime.Object, error)

Get gets a specific pod specified by its ID.

func (*REST) List

func (r *REST) List(ctx api.Context, label labels.Selector, field fields.Selector) (runtime.Object, error)

List obtains a list of pods with labels that match selector.

func (*REST) New

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

New returns a new object

func (*REST) NewList

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

NewList returns a new list object

func (*REST) ResourceLocation

func (r *REST) ResourceLocation(ctx api.Context, name string) (string, error)

ResourceLocation returns a pods location from its HostIP

func (*REST) Update

func (r *REST) Update(ctx api.Context, obj runtime.Object) (runtime.Object, bool, error)

Update changes a pod specification.

func (*REST) Watch

func (r *REST) Watch(ctx api.Context, label labels.Selector, field fields.Selector, resourceVersion string) (watch.Interface, error)

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

func (*REST) WithPodStatus

func (r *REST) WithPodStatus(cache pod.PodStatusGetter) *REST

WithPodStatus returns a rest object that decorates returned responses with extra status information.

type StatusREST

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

StatusREST implements the REST endpoint for changing the status of a pod.

func (*StatusREST) New

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

func (*StatusREST) Update

func (r *StatusREST) Update(ctx api.Context, obj runtime.Object) (runtime.Object, bool, error)

Update alters the status subset of an object.

Source Files

etcd.go

Version
v0.13.2
Published
Mar 19, 2015
Platform
js/wasm
Imports
13 packages
Last checked
5 minutes ago

Tools for package owners.