package resourcequota
import "k8s.io/kubernetes/pkg/registry/resourcequota"
Package resourcequota provides Registry interface and it's REST implementation for storing ResourceQuota api objects.
Index ¶
- Variables
- func MatchResourceQuota(label labels.Selector, field fields.Selector) generic.Matcher
- func ResourceQuotaToSelectableFields(resourcequota *api.ResourceQuota) labels.Set
- type Registry
Variables ¶
var StatusStrategy = resourcequotaStatusStrategy{Strategy}
var Strategy = resourcequotaStrategy{api.Scheme, api.SimpleNameGenerator}
Strategy is the default logic that applies when creating and updating ResourceQuota objects via the REST API.
Functions ¶
func MatchResourceQuota ¶
MatchResourceQuota returns a generic matcher for a given label and field selector.
func ResourceQuotaToSelectableFields ¶
func ResourceQuotaToSelectableFields(resourcequota *api.ResourceQuota) labels.Set
ResourceQuotaToSelectableFields 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 { // ListResourceQuotas obtains a list of resourceQuotas having labels which match selector. ListResourceQuotas(ctx api.Context, selector labels.Selector) (*api.ResourceQuotaList, error) // Watch for new/changed/deleted resourceQuotas WatchResourceQuotas(ctx api.Context, label labels.Selector, field fields.Selector, resourceVersion string) (watch.Interface, error) // Get a specific resourceQuota GetResourceQuota(ctx api.Context, resourceQuotaID string) (*api.ResourceQuota, error) // Create a resourceQuota based on a specification. CreateResourceQuota(ctx api.Context, resourceQuota *api.ResourceQuota) error // Update an existing resourceQuota UpdateResourceQuota(ctx api.Context, resourceQuota *api.ResourceQuota) error // Delete an existing resourceQuota DeleteResourceQuota(ctx api.Context, resourceQuotaID string) error }
Registry is an interface implemented by things that know how to store ResourceQuota 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/resourcequota/etcd |
- Version
- v0.15.0
- Published
- Apr 13, 2015
- Platform
- linux/amd64
- Imports
- 10 packages
- Last checked
- 1 minute ago –
Tools for package owners.