package service
import "k8s.io/kubernetes/pkg/registry/service"
Package service provides the Registry interface and its RESTStorage implementation for storing Service api objects.
Index ¶
- func RestoreRange(dst ipallocator.Snapshottable, src *api.RangeAllocation) error
- func SnapshotRange(dst *api.RangeAllocation, src ipallocator.Snapshottable)
- type IPRegistry
- type REST
- func NewStorage(registry Registry, machines minion.Registry, endpoints endpoint.Registry, portals ipallocator.Interface, clusterName string) *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 (*REST) New() runtime.Object
- func (*REST) NewList() runtime.Object
- func (rs *REST) ResourceLocation(ctx api.Context, id string) (*url.URL, http.RoundTripper, 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
Functions ¶
func RestoreRange ¶
func RestoreRange(dst ipallocator.Snapshottable, src *api.RangeAllocation) error
RestoreRange updates a snapshottable ipallocator from a RangeAllocation
func SnapshotRange ¶
func SnapshotRange(dst *api.RangeAllocation, src ipallocator.Snapshottable)
SnapshotRange updates a RangeAllocation to match a snapshottable ipallocator
Types ¶
type IPRegistry ¶
type IPRegistry interface { // Get returns the latest allocation, an empty object if no allocation has been made, // or an error if the allocation could not be retrieved. Get() (*api.RangeAllocation, error) // CreateOrUpdate should create or update the provide allocation, unless a conflict // has occured since the item was last created. CreateOrUpdate(*api.RangeAllocation) error }
IPRegistry is a registry that can retrieve or persist a RangeAllocation object.
type REST ¶
type REST struct {
// contains filtered or unexported fields
}
REST adapts a service registry into apiserver's RESTStorage model.
func NewStorage ¶
func NewStorage(registry Registry, machines minion.Registry, endpoints endpoint.Registry, portals ipallocator.Interface, clusterName string) *REST
NewStorage returns a new REST.
func (*REST) Create ¶
func (*REST) Delete ¶
func (*REST) Get ¶
func (*REST) List ¶
func (rs *REST) List(ctx api.Context, label labels.Selector, field fields.Selector) (runtime.Object, error)
func (*REST) New ¶
func (*REST) NewList ¶
func (*REST) ResourceLocation ¶
ResourceLocation returns a URL to which one can send traffic for the specified service.
func (*REST) Update ¶
func (*REST) Watch ¶
func (rs *REST) Watch(ctx api.Context, label labels.Selector, field fields.Selector, resourceVersion string) (watch.Interface, error)
Watch returns Services events via a watch.Interface. It implements rest.Watcher.
type Registry ¶
type Registry interface { ListServices(ctx api.Context) (*api.ServiceList, error) CreateService(ctx api.Context, svc *api.Service) (*api.Service, error) GetService(ctx api.Context, name string) (*api.Service, error) DeleteService(ctx api.Context, name string) error UpdateService(ctx api.Context, svc *api.Service) (*api.Service, error) WatchServices(ctx api.Context, labels labels.Selector, fields fields.Selector, resourceVersion string) (watch.Interface, error) }
Registry is an interface for things that know how to store services.
Source Files ¶
doc.go registry.go rest.go
Directories ¶
Path | Synopsis |
---|---|
pkg/registry/service/ipallocator | |
pkg/registry/service/ipallocator/controller | |
pkg/registry/service/ipallocator/etcd |
- Version
- v0.17.1
- Published
- May 21, 2015
- Platform
- js/wasm
- Imports
- 19 packages
- Last checked
- 1 minute ago –
Tools for package owners.