Documentation ¶
Overview ¶
Package node provides Registry interface and implementation for storing Nodes.
Index ¶
- Variables
- func MatchNode(label labels.Selector, field fields.Selector) generic.Matcher
- func NodeToSelectableFields(node *api.Node) fields.Set
- func ResourceLocation(getter ResourceGetter, connection client.ConnectionInfoGetter, ...) (*url.URL, http.RoundTripper, error)
- type Registry
- type ResourceGetter
Constants ¶
This section is empty.
Variables ¶
View Source
var StatusStrategy = nodeStatusStrategy{Strategy}
View Source
var Strategy = nodeStrategy{api.Scheme, api.SimpleNameGenerator}
Nodes is the default logic that applies when creating and updating Node objects.
Functions ¶
func NodeToSelectableFields ¶
NodeToSelectableFields returns a field set that represents the object.
func ResourceLocation ¶
func ResourceLocation(getter ResourceGetter, connection client.ConnectionInfoGetter, proxyTransport http.RoundTripper, ctx api.Context, id string) (*url.URL, http.RoundTripper, error)
ResourceLocation returns an URL and transport which one can use to send traffic for the specified node.
Types ¶
type Registry ¶
type Registry interface { ListNodes(ctx api.Context, options *api.ListOptions) (*api.NodeList, error) CreateNode(ctx api.Context, node *api.Node) error UpdateNode(ctx api.Context, node *api.Node) error GetNode(ctx api.Context, nodeID string) (*api.Node, error) DeleteNode(ctx api.Context, nodeID string) error WatchNodes(ctx api.Context, options *api.ListOptions) (watch.Interface, error) }
Registry is an interface for things that know how to store node.
func NewRegistry ¶
func NewRegistry(s rest.StandardStorage) Registry
NewRegistry returns a new Registry interface for the given Storage. Any mismatched types will panic.
Click to show internal directories.
Click to hide internal directories.