forked from instrumenta/kubernetes-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmetricvaluestatus.json
20 lines (20 loc) · 995 Bytes
/
metricvaluestatus.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{
"description": "MetricValueStatus holds the current value for a metric",
"properties": {
"averageUtilization": {
"description": "currentAverageUtilization is the current value of the average of the resource metric across all relevant pods, represented as a percentage of the requested value of the resource for the pods.",
"type": "integer",
"format": "int32"
},
"averageValue": {
"description": "averageValue is the current value of the average of the metric across all relevant pods (as a quantity)",
"$ref": "https://kubernetesjsonschema.dev/v1.12.1/_definitions.json#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
},
"value": {
"description": "value is the current value of the metric (as a quantity).",
"$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"
}