package node
import "k8s.io/kubernetes/pkg/registry/core/node"
Package node provides Registry interface and implementation for storing Nodes.
Index ¶
- Variables
- func GetAttrs(obj runtime.Object) (labels.Set, fields.Set, bool, error)
- func MatchNode(label labels.Selector, field fields.Selector) pkgstorage.SelectionPredicate
- func NodeNameTriggerFunc(obj runtime.Object) []pkgstorage.MatchValue
- func NodeToSelectableFields(node *api.Node) fields.Set
- func ResourceLocation(getter ResourceGetter, connection client.ConnectionInfoGetter, proxyTransport http.RoundTripper, ctx genericapirequest.Context, id string) (*url.URL, http.RoundTripper, error)
- type Registry
- type ResourceGetter
Variables ¶
var StatusStrategy = nodeStatusStrategy{Strategy}
var Strategy = nodeStrategy{api.Scheme, names.SimpleNameGenerator}
Nodes is the default logic that applies when creating and updating Node objects.
Functions ¶
func GetAttrs ¶
GetAttrs returns labels and fields of a given object for filtering purposes.
func MatchNode ¶
func MatchNode(label labels.Selector, field fields.Selector) pkgstorage.SelectionPredicate
MatchNode returns a generic matcher for a given label and field selector.
func NodeNameTriggerFunc ¶
func NodeNameTriggerFunc(obj runtime.Object) []pkgstorage.MatchValue
func NodeToSelectableFields ¶
NodeToSelectableFields returns a field set that represents the object.
func ResourceLocation ¶
func ResourceLocation(getter ResourceGetter, connection client.ConnectionInfoGetter, proxyTransport http.RoundTripper, ctx genericapirequest.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 genericapirequest.Context, options *metainternalversion.ListOptions) (*api.NodeList, error) CreateNode(ctx genericapirequest.Context, node *api.Node) error UpdateNode(ctx genericapirequest.Context, node *api.Node) error GetNode(ctx genericapirequest.Context, nodeID string, options *metav1.GetOptions) (*api.Node, error) DeleteNode(ctx genericapirequest.Context, nodeID string) error WatchNodes(ctx genericapirequest.Context, options *metainternalversion.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.
type ResourceGetter ¶
type ResourceGetter interface { Get(genericapirequest.Context, string, *metav1.GetOptions) (runtime.Object, error) }
ResourceGetter is an interface for retrieving resources by ResourceLocation.
Source Files ¶
doc.go registry.go strategy.go
Directories ¶
Path | Synopsis |
---|---|
pkg/registry/core/node/rest | |
pkg/registry/core/node/storage |
- Version
- v1.8.1
- Published
- Oct 11, 2017
- Platform
- js/wasm
- Imports
- 24 packages
- Last checked
- 6 minutes ago –
Tools for package owners.