package namespace
import "k8s.io/kubernetes/pkg/registry/core/namespace"
Package namespace provides Registry interface and it's REST implementation for storing Namespace api objects.
Index ¶
- Variables
- func GetAttrs(obj runtime.Object) (labels.Set, fields.Set, bool, error)
- func MatchNamespace(label labels.Selector, field fields.Selector) apistorage.SelectionPredicate
- func NamespaceToSelectableFields(namespace *api.Namespace) fields.Set
- type Registry
Variables ¶
var FinalizeStrategy = namespaceFinalizeStrategy{Strategy}
var StatusStrategy = namespaceStatusStrategy{Strategy}
var Strategy = namespaceStrategy{legacyscheme.Scheme, names.SimpleNameGenerator}
Strategy is the default logic that applies when creating and updating Namespace objects via the REST API.
Functions ¶
func GetAttrs ¶
GetAttrs returns labels and fields of a given object for filtering purposes.
func MatchNamespace ¶
func MatchNamespace(label labels.Selector, field fields.Selector) apistorage.SelectionPredicate
MatchNamespace returns a generic matcher for a given label and field selector.
func NamespaceToSelectableFields ¶
NamespaceToSelectableFields returns a field set that represents the object
Types ¶
type Registry ¶
type Registry interface { ListNamespaces(ctx genericapirequest.Context, options *metainternalversion.ListOptions) (*api.NamespaceList, error) WatchNamespaces(ctx genericapirequest.Context, options *metainternalversion.ListOptions) (watch.Interface, error) GetNamespace(ctx genericapirequest.Context, namespaceID string, options *metav1.GetOptions) (*api.Namespace, error) CreateNamespace(ctx genericapirequest.Context, namespace *api.Namespace, createValidation rest.ValidateObjectFunc) error UpdateNamespace(ctx genericapirequest.Context, namespace *api.Namespace, createValidation rest.ValidateObjectFunc, updateValidation rest.ValidateObjectUpdateFunc) error DeleteNamespace(ctx genericapirequest.Context, namespaceID string) error }
Registry is an interface implemented by things that know how to store Namespace objects.
func NewRegistry ¶
func NewRegistry(s rest.StandardStorage) Registry
NewRegistry returns a new Registry interface for the given Storage. Any mismatched types will panic.
Source Files ¶
doc.go registry.go strategy.go
Directories ¶
Path | Synopsis |
---|---|
pkg/registry/core/namespace/storage |
- Version
- v1.10.0-rc.1
- Published
- Mar 19, 2018
- Platform
- js/wasm
- Imports
- 16 packages
- Last checked
- 31 seconds ago –
Tools for package owners.