Documentation ¶
Index ¶
- func NewREST(h tools.EtcdHelper, factory pod.BoundPodFactory) (*REST, *BindingREST)
- type BindingREST
- 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, field labels.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, field labels.Selector, resourceVersion string) (watch.Interface, error)
- func (r *REST) WithPodStatus(cache pod.PodStatusGetter) *REST
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func NewREST ¶
func NewREST(h tools.EtcdHelper, factory pod.BoundPodFactory) (*REST, *BindingREST)
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) 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) ResourceLocation ¶
ResourceLocation returns a pods location from its HostIP
func (*REST) Watch ¶
func (r *REST) Watch(ctx api.Context, label, field labels.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.
Click to show internal directories.
Click to hide internal directories.