ClusterResourceQuota [quota.openshift.io/v1]
Description
ClusterResourceQuota mirrors ResourceQuota at a cluster scope. This object is easily convertible to synthetic ResourceQuota object to allow quota evaluation re-use. Compatibility level 1: Stable within a major release for a minimum of 12 months or 3 minor releases (whichever is longer).
Type
object
Required
metadata
spec
Specification
Property | Type | Description |
---|---|---|
|
| APIVersion defines the versioned schema of this representation of an object. Servers should convert recognized schemas to the latest internal value, and may reject unrecognized values. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#resources |
|
| Kind is a string value representing the REST resource this object represents. Servers may infer this from the endpoint the client submits requests to. Cannot be updated. In CamelCase. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#types-kinds |
| Standard object’s metadata. More info: https://git.k8s.io/community/contributors/devel/sig-architecture/api-conventions.md#metadata | |
|
| Spec defines the desired quota |
|
| Status defines the actual enforced quota and its current usage |
.spec
Description
Spec defines the desired quota
Type
object
Required
quota
selector
Property | Type | Description |
---|---|---|
|
| Quota defines the desired quota |
|
| Selector is the selector used to match projects. It should only select active projects on the scale of dozens (though it can select many more less active projects). These projects will contend on object creation through this resource. |
.spec.quota
Description
Quota defines the desired quota
Type
object
Property | Type | Description |
---|---|---|
|
| hard is the set of desired hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/ |
|
| scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota but expressed using ScopeSelectorOperator in combination with possible values. For a resource to match, both scopes AND scopeSelector (if specified in spec), must be matched. |
|
| A collection of filters that must match each object tracked by a quota. If not specified, the quota matches all objects. |
.spec.quota.scopeSelector
Description
scopeSelector is also a collection of filters like scopes that must match each object tracked by a quota but expressed using ScopeSelectorOperator in combination with possible values. For a resource to match, both scopes AND scopeSelector (if specified in spec), must be matched.
Type
object
Property | Type | Description |
---|---|---|
|
| A list of scope selector requirements by scope of the resources. |
|
| A scoped-resource selector requirement is a selector that contains values, a scope name, and an operator that relates the scope name and values. |
.spec.quota.scopeSelector.matchExpressions
Description
A list of scope selector requirements by scope of the resources.
Type
array
.spec.quota.scopeSelector.matchExpressions[]
Description
A scoped-resource selector requirement is a selector that contains values, a scope name, and an operator that relates the scope name and values.
Type
object
Required
operator
scopeName
Property | Type | Description |
---|---|---|
|
| Represents a scope’s relationship to a set of values. Valid operators are In, NotIn, Exists, DoesNotExist. |
|
| The name of the scope that the selector applies to. |
|
| An array of string values. If the operator is In or NotIn, the values array must be non-empty. If the operator is Exists or DoesNotExist, the values array must be empty. This array is replaced during a strategic merge patch. |
.spec.selector
Description
Selector is the selector used to match projects. It should only select active projects on the scale of dozens (though it can select many more less active projects). These projects will contend on object creation through this resource.
Type
object
Property | Type | Description |
---|---|---|
|
| AnnotationSelector is used to select projects by annotation. |
| `` | LabelSelector is used to select projects by label. |
.status
Description
Status defines the actual enforced quota and its current usage
Type
object
Required
total
Property | Type | Description |
---|---|---|
| `` | Namespaces slices the usage by project. This division allows for quick resolution of deletion reconciliation inside of a single project without requiring a recalculation across all projects. This can be used to pull the deltas for a given project. |
|
| Total defines the actual enforced quota and its current usage across all projects |
.status.total
Description
Total defines the actual enforced quota and its current usage across all projects
Type
object
Property | Type | Description |
---|---|---|
|
| Hard is the set of enforced hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/ |
|
| Used is the current observed total usage of the resource in the namespace. |
API endpoints
The following API endpoints are available:
/apis/quota.openshift.io/v1/clusterresourcequotas
DELETE
: delete collection of ClusterResourceQuotaGET
: list objects of kind ClusterResourceQuotaPOST
: create a ClusterResourceQuota
/apis/quota.openshift.io/v1/watch/clusterresourcequotas
GET
: watch individual changes to a list of ClusterResourceQuota. deprecated: use the ‘watch’ parameter with a list operation instead.
/apis/quota.openshift.io/v1/clusterresourcequotas/{name}
DELETE
: delete a ClusterResourceQuotaGET
: read the specified ClusterResourceQuotaPATCH
: partially update the specified ClusterResourceQuotaPUT
: replace the specified ClusterResourceQuota
/apis/quota.openshift.io/v1/watch/clusterresourcequotas/{name}
GET
: watch changes to an object of kind ClusterResourceQuota. deprecated: use the ‘watch’ parameter with a list operation instead, filtered to a single item with the ‘fieldSelector’ parameter.
/apis/quota.openshift.io/v1/clusterresourcequotas/{name}/status
GET
: read status of the specified ClusterResourceQuotaPATCH
: partially update status of the specified ClusterResourceQuotaPUT
: replace status of the specified ClusterResourceQuota
/apis/quota.openshift.io/v1/clusterresourcequotas
HTTP method
DELETE
Description
delete collection of ClusterResourceQuota
HTTP code | Reponse body |
---|---|
200 - OK | Status schema |
401 - Unauthorized | Empty |
HTTP method
GET
Description
list objects of kind ClusterResourceQuota
HTTP code | Reponse body |
---|---|
200 - OK | ClusterResourceQuotaList schema |
401 - Unauthorized | Empty |
HTTP method
POST
Description
create a ClusterResourceQuota
Parameter | Type | Description |
---|---|---|
|
| When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed |
|
| fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Parameter | Type | Description |
---|---|---|
| ClusterResourceQuota schema |
HTTP code | Reponse body |
---|---|
200 - OK | ClusterResourceQuota schema |
201 - Created | ClusterResourceQuota schema |
202 - Accepted | ClusterResourceQuota schema |
401 - Unauthorized | Empty |
/apis/quota.openshift.io/v1/watch/clusterresourcequotas
HTTP method
GET
Description
watch individual changes to a list of ClusterResourceQuota. deprecated: use the ‘watch’ parameter with a list operation instead.
HTTP code | Reponse body |
---|---|
200 - OK | WatchEvent schema |
401 - Unauthorized | Empty |
/apis/quota.openshift.io/v1/clusterresourcequotas/{name}
Parameter | Type | Description |
---|---|---|
|
| name of the ClusterResourceQuota |
HTTP method
DELETE
Description
delete a ClusterResourceQuota
Parameter | Type | Description |
---|---|---|
|
| When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed |
HTTP code | Reponse body |
---|---|
200 - OK | Status schema |
202 - Accepted | Status schema |
401 - Unauthorized | Empty |
HTTP method
GET
Description
read the specified ClusterResourceQuota
HTTP code | Reponse body |
---|---|
200 - OK | ClusterResourceQuota schema |
401 - Unauthorized | Empty |
HTTP method
PATCH
Description
partially update the specified ClusterResourceQuota
Parameter | Type | Description |
---|---|---|
|
| When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed |
|
| fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
HTTP code | Reponse body |
---|---|
200 - OK | ClusterResourceQuota schema |
401 - Unauthorized | Empty |
HTTP method
PUT
Description
replace the specified ClusterResourceQuota
Parameter | Type | Description |
---|---|---|
|
| When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed |
|
| fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Parameter | Type | Description |
---|---|---|
| ClusterResourceQuota schema |
HTTP code | Reponse body |
---|---|
200 - OK | ClusterResourceQuota schema |
201 - Created | ClusterResourceQuota schema |
401 - Unauthorized | Empty |
/apis/quota.openshift.io/v1/watch/clusterresourcequotas/{name}
Parameter | Type | Description |
---|---|---|
|
| name of the ClusterResourceQuota |
HTTP method
GET
Description
watch changes to an object of kind ClusterResourceQuota. deprecated: use the ‘watch’ parameter with a list operation instead, filtered to a single item with the ‘fieldSelector’ parameter.
HTTP code | Reponse body |
---|---|
200 - OK | WatchEvent schema |
401 - Unauthorized | Empty |
/apis/quota.openshift.io/v1/clusterresourcequotas/{name}/status
Parameter | Type | Description |
---|---|---|
|
| name of the ClusterResourceQuota |
HTTP method
GET
Description
read status of the specified ClusterResourceQuota
HTTP code | Reponse body |
---|---|
200 - OK | ClusterResourceQuota schema |
401 - Unauthorized | Empty |
HTTP method
PATCH
Description
partially update status of the specified ClusterResourceQuota
Parameter | Type | Description |
---|---|---|
|
| When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed |
|
| fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
HTTP code | Reponse body |
---|---|
200 - OK | ClusterResourceQuota schema |
401 - Unauthorized | Empty |
HTTP method
PUT
Description
replace status of the specified ClusterResourceQuota
Parameter | Type | Description |
---|---|---|
|
| When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed |
|
| fieldValidation instructs the server on how to handle objects in the request (POST/PUT/PATCH) containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other errors, and will only persist the last of any duplicate fields. This is the default in v1.23+ - Strict: This will fail the request with a BadRequest error if any unknown fields would be dropped from the object, or if any duplicate fields are present. The error returned from the server will contain all unknown and duplicate fields encountered. |
Parameter | Type | Description |
---|---|---|
| ClusterResourceQuota schema |
HTTP code | Reponse body |
---|---|
200 - OK | ClusterResourceQuota schema |
201 - Created | ClusterResourceQuota schema |
401 - Unauthorized | Empty |