package namespace
import "k8s.io/kubernetes/pkg/registry/namespace"
Package namespace provides Registry interface and it's REST implementation for storing Namespace api objects.
Index ¶
- Variables
- func MatchNamespace(label labels.Selector, field fields.Selector) generic.Matcher
- func NamespaceToSelectableFields(namespace *api.Namespace) labels.Set
- type Registry
Variables ¶
var FinalizeStrategy = namespaceFinalizeStrategy{Strategy}
var StatusStrategy = namespaceStatusStrategy{Strategy}
var Strategy = namespaceStrategy{api.Scheme, api.SimpleNameGenerator}
Strategy is the default logic that applies when creating and updating Namespace objects via the REST API.
Functions ¶
func MatchNamespace ¶
MatchNamespace returns a generic matcher for a given label and field selector.
func NamespaceToSelectableFields ¶
NamespaceToSelectableFields returns a label set that represents the object TODO: fields are not labels, and the validation rules for them do not apply.
Types ¶
type Registry ¶
type Registry interface { // ListNamespaces obtains a list of namespaces having labels which match selector. ListNamespaces(ctx api.Context, selector labels.Selector) (*api.NamespaceList, error) // Watch for new/changed/deleted namespaces WatchNamespaces(ctx api.Context, label labels.Selector, field fields.Selector, resourceVersion string) (watch.Interface, error) // Get a specific namespace GetNamespace(ctx api.Context, namespaceID string) (*api.Namespace, error) // Create a namespace based on a specification. CreateNamespace(ctx api.Context, namespace *api.Namespace) error // Update an existing namespace UpdateNamespace(ctx api.Context, namespace *api.Namespace) error // Delete an existing namespace DeleteNamespace(ctx api.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 rest.go
Directories ¶
Path | Synopsis |
---|---|
pkg/registry/namespace/etcd |
- Version
- v0.14.2
- Published
- Apr 8, 2015
- Platform
- windows/amd64
- Imports
- 10 packages
- Last checked
- 4 minutes ago –
Tools for package owners.