package controller
import "k8s.io/kubernetes/pkg/registry/controller"
Package controller provides Registry interface and it's RESTStorage implementation for storing ReplicationController api objects.
Index ¶
- type PodLister
- type REST
- func NewREST(registry Registry, podLister PodLister) *REST
- func (rs *REST) Create(ctx api.Context, obj runtime.Object) (<-chan apiserver.RESTResult, error)
- func (rs *REST) Delete(ctx api.Context, id string) (<-chan apiserver.RESTResult, error)
- func (rs *REST) Get(ctx api.Context, id string) (runtime.Object, error)
- func (rs *REST) List(ctx api.Context, label, field labels.Selector) (runtime.Object, error)
- func (*REST) New() runtime.Object
- func (rs *REST) Update(ctx api.Context, obj runtime.Object) (<-chan apiserver.RESTResult, error)
- func (rs *REST) Watch(ctx api.Context, label, field labels.Selector, resourceVersion string) (watch.Interface, error)
- type Registry
Types ¶
type PodLister ¶
type PodLister interface { ListPods(ctx api.Context, labels labels.Selector) (*api.PodList, error) }
PodLister is anything that knows how to list pods.
type REST ¶
type REST struct {
// contains filtered or unexported fields
}
REST implements apiserver.RESTStorage for the replication controller service.
func NewREST ¶
NewREST returns a new apiserver.RESTStorage for the given registry and PodLister.
func (*REST) Create ¶
Create registers the given ReplicationController.
func (*REST) Delete ¶
Delete asynchronously deletes the ReplicationController specified by its id.
func (*REST) Get ¶
Get obtains the ReplicationController specified by its id.
func (*REST) List ¶
List obtains a list of ReplicationControllers that match selector.
func (*REST) New ¶
New creates a new ReplicationController for use with Create and Update.
func (*REST) Update ¶
Update replaces a given ReplicationController instance with an existing instance in storage.registry.
func (*REST) Watch ¶
func (rs *REST) Watch(ctx api.Context, label, field labels.Selector, resourceVersion string) (watch.Interface, error)
Watch returns ReplicationController events via a watch.Interface. It implements apiserver.ResourceWatcher.
type Registry ¶
type Registry interface { ListControllers(ctx api.Context) (*api.ReplicationControllerList, error) WatchControllers(ctx api.Context, resourceVersion string) (watch.Interface, error) GetController(ctx api.Context, controllerID string) (*api.ReplicationController, error) CreateController(ctx api.Context, controller *api.ReplicationController) error UpdateController(ctx api.Context, controller *api.ReplicationController) error DeleteController(ctx api.Context, controllerID string) error }
Registry is an interface for things that know how to store ReplicationControllers.
Source Files ¶
doc.go registry.go rest.go
- Version
- v0.5.2
- Published
- Nov 19, 2014
- Platform
- js/wasm
- Imports
- 10 packages
- Last checked
- 1 minute ago –
Tools for package owners.