Documentation
¶
Overview ¶
Package resourcequota provides Registry interface and it's REST implementation for storing ResourceQuota api objects.
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var StatusStrategy = resourcequotaStatusStrategy{Strategy}
View Source
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 ¶ added in v0.13.1
func MatchResourceQuota(label labels.Selector, field fields.Selector) generic.Matcher
MatchResourceQuota returns a generic matcher for a given label and field selector.
func ResourceQuotaToSelectableFields ¶ added in v0.13.1
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 ¶ added in v0.13.1
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.