package minion
import "k8s.io/kubernetes/pkg/registry/minion"
Package minion provides Registry interface and implementation for storing Minions.
Index ¶
- Variables
- type REST
- func NewREST(m Registry) *REST
- func (rs *REST) Create(ctx api.Context, obj runtime.Object) (runtime.Object, error)
- func (rs *REST) Delete(ctx api.Context, id string) (runtime.Object, error)
- func (rs *REST) Get(ctx api.Context, id string) (runtime.Object, error)
- func (rs *REST) List(ctx api.Context, label labels.Selector, field fields.Selector) (runtime.Object, error)
- func (rs *REST) New() runtime.Object
- func (*REST) NewList() runtime.Object
- func (rs *REST) ResourceLocation(ctx api.Context, id string) (string, error)
- func (rs *REST) Update(ctx api.Context, obj runtime.Object) (runtime.Object, bool, error)
- func (rs *REST) Watch(ctx api.Context, label labels.Selector, field fields.Selector, resourceVersion string) (watch.Interface, error)
- type Registry
Variables ¶
Types ¶
type REST ¶
type REST struct {
// contains filtered or unexported fields
}
REST adapts minion into apiserver's RESTStorage model.
func NewREST ¶
NewREST returns a new apiserver.RESTStorage implementation for minion.
func (*REST) Create ¶
Create satisfies the RESTStorage interface.
func (*REST) Delete ¶
Delete satisfies the RESTStorage interface.
func (*REST) Get ¶
Get satisfies the RESTStorage interface.
func (*REST) List ¶
func (rs *REST) List(ctx api.Context, label labels.Selector, field fields.Selector) (runtime.Object, error)
List satisfies the RESTStorage interface.
func (*REST) New ¶
func (*REST) NewList ¶
func (*REST) ResourceLocation ¶
ResourceLocation returns a URL to which one can send traffic for the specified minion.
func (*REST) Update ¶
Update satisfies the RESTStorage interface.
func (*REST) Watch ¶
func (rs *REST) Watch(ctx api.Context, label labels.Selector, field fields.Selector, resourceVersion string) (watch.Interface, error)
Watch returns Minions events via a watch.Interface. It implements apiserver.ResourceWatcher.
type Registry ¶
type Registry interface { ListMinions(ctx api.Context) (*api.NodeList, error) CreateMinion(ctx api.Context, minion *api.Node) error UpdateMinion(ctx api.Context, minion *api.Node) error GetMinion(ctx api.Context, minionID string) (*api.Node, error) DeleteMinion(ctx api.Context, minionID string) error WatchMinions(ctx api.Context, label labels.Selector, field fields.Selector, resourceVersion string) (watch.Interface, error) }
MinionRegistry is an interface for things that know how to store minions.
Source Files ¶
doc.go registry.go rest.go
- Version
- v0.13.2
- Published
- Mar 19, 2015
- Platform
- js/wasm
- Imports
- 13 packages
- Last checked
- 3 minutes ago –
Tools for package owners.