package etcd
import "k8s.io/kubernetes/pkg/registry/pod/etcd"
Index ¶
- func NewREST(h tools.EtcdHelper) (*REST, *BindingREST, *StatusREST)
- type BindingREST
- func (r *BindingREST) Create(ctx api.Context, obj runtime.Object) (out runtime.Object, err error)
- func (r *BindingREST) New() runtime.Object
- type REST
- func (r *REST) Create(ctx api.Context, obj runtime.Object) (runtime.Object, error)
- func (r *REST) Delete(ctx api.Context, name string) (runtime.Object, error)
- func (r *REST) Get(ctx api.Context, name string) (runtime.Object, error)
- func (r *REST) List(ctx api.Context, label labels.Selector, field fields.Selector) (runtime.Object, error)
- func (r *REST) New() runtime.Object
- func (r *REST) NewList() runtime.Object
- func (r *REST) ResourceLocation(ctx api.Context, name string) (string, error)
- func (r *REST) Update(ctx api.Context, obj runtime.Object) (runtime.Object, bool, error)
- func (r *REST) Watch(ctx api.Context, label labels.Selector, field fields.Selector, resourceVersion string) (watch.Interface, error)
- func (r *REST) WithPodStatus(cache pod.PodStatusGetter) *REST
- type StatusREST
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 ¶
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 ¶
Create creates a pod based on a specification.
func (*REST) Delete ¶
Delete deletes an existing pod specified by its ID.
func (*REST) Get ¶
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 ¶
New returns a new object
func (*REST) NewList ¶
NewList returns a new list object
func (*REST) ResourceLocation ¶
ResourceLocation returns a pods location from its HostIP
func (*REST) Update ¶
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 ¶
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.