import "k8s.io/kubernetes/pkg/registry/core/service/storage"
func NewGenericREST(optsGetter generic.RESTOptionsGetter, serviceCIDR net.IPNet, hasSecondary bool) (*GenericREST, *StatusREST, error)
NewREST returns a RESTStorage object that will work against services.
type EndpointsStorage interface { rest.Getter rest.GracefulDeleter }
type GenericREST struct { *genericregistry.Store // contains filtered or unexported fields }
func (r *GenericREST) Categories() []string
Categories implements the CategoriesProvider interface. Returns a list of categories a resource is part of.
func (r *GenericREST) ShortNames() []string
ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
type REST struct {
// contains filtered or unexported fields
}
REST adapts a service registry into apiserver's RESTStorage model.
func NewREST( services ServiceStorage, endpoints EndpointsStorage, pods rest.Getter, serviceIPs ipallocator.Interface, secondaryServiceIPs ipallocator.Interface, serviceNodePorts portallocator.Interface, proxyTransport http.RoundTripper, ) (*REST, *registry.ProxyREST)
NewREST returns a wrapper around the underlying generic storage and performs allocations and deallocations of various service related resources like ports. TODO: all transactional behavior should be supported from within generic storage
or the strategy.
Categories implements the CategoriesProvider interface. Returns a list of categories a resource is part of.
func (r *REST) ConvertToTable(ctx context.Context, object runtime.Object, tableOptions runtime.Object) (*metav1.Table, error)
func (rs *REST) Create(ctx context.Context, obj runtime.Object, createValidation rest.ValidateObjectFunc, options *metav1.CreateOptions) (runtime.Object, error)
func (rs *REST) Delete(ctx context.Context, id string, deleteValidation rest.ValidateObjectFunc, options *metav1.DeleteOptions) (runtime.Object, bool, error)
func (rs *REST) Export(ctx context.Context, name string, opts metav1.ExportOptions) (runtime.Object, error)
func (rs *REST) Get(ctx context.Context, name string, options *metav1.GetOptions) (runtime.Object, error)
func (rs *REST) List(ctx context.Context, options *metainternalversion.ListOptions) (runtime.Object, error)
func (rs *REST) ResourceLocation(ctx context.Context, id string) (*url.URL, http.RoundTripper, error)
ResourceLocation returns a URL to which one can send traffic for the specified service.
ShortNames implements the ShortNamesProvider interface. Returns a list of short names for a resource.
func (rs *REST) StorageVersion() runtime.GroupVersioner
func (rs *REST) Update(ctx context.Context, name string, objInfo rest.UpdatedObjectInfo, createValidation rest.ValidateObjectFunc, updateValidation rest.ValidateObjectUpdateFunc, forceAllowCreate bool, options *metav1.UpdateOptions) (runtime.Object, bool, error)
func (rs *REST) Watch(ctx context.Context, options *metainternalversion.ListOptions) (watch.Interface, error)
type ServiceNodePort struct { // The IP protocol for this port. Supports "TCP" and "UDP". Protocol api.Protocol // The port on each node on which this service is exposed. // Default is to auto-allocate a port if the ServiceType of this Service requires one. NodePort int32 }
ServiceNodePort includes protocol and port number of a service NodePort.
type ServiceStorage interface { rest.Scoper rest.Getter rest.Lister rest.CreaterUpdater rest.GracefulDeleter rest.Watcher rest.Exporter rest.StorageVersionProvider }
type StatusREST struct {
// contains filtered or unexported fields
}
StatusREST implements the GenericREST endpoint for changing the status of a service.
func (r *StatusREST) Get(ctx context.Context, name string, options *metav1.GetOptions) (runtime.Object, error)
Get retrieves the object from the storage. It is required to support Patch.
func (r *StatusREST) New() runtime.Object
func (r *StatusREST) Update(ctx context.Context, name string, objInfo rest.UpdatedObjectInfo, createValidation rest.ValidateObjectFunc, updateValidation rest.ValidateObjectUpdateFunc, forceAllowCreate bool, options *metav1.UpdateOptions) (runtime.Object, bool, error)
Update alters the status subset of an object.
Package storage imports 33 packages (graph) and is imported by 22 packages. Updated 2021-01-18. Refresh now. Tools for package owners.