forked from instrumenta/kubernetes-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathresourcequotastatus-v1.json
27 lines (27 loc) · 951 Bytes
/
resourcequotastatus-v1.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"description": "ResourceQuotaStatus defines the enforced hard limits and observed use.",
"properties": {
"hard": {
"description": "Hard is the set of enforced hard limits for each named resource. More info: https://kubernetes.io/docs/concepts/policy/resource-quotas/",
"type": [
"object",
"null"
],
"additionalProperties": {
"$ref": "https://kubernetesjsonschema.dev/v1.12.1/_definitions.json#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
}
},
"used": {
"description": "Used is the current observed total usage of the resource in the namespace.",
"type": [
"object",
"null"
],
"additionalProperties": {
"$ref": "https://kubernetesjsonschema.dev/v1.12.1/_definitions.json#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
}
}
},
"$schema": "http://json-schema.org/schema#",
"type": "object"
}