@jkcfg/kubernetes
Version:
jk Kubernetes library
30 lines • 1.14 kB
JSON
{
"description": "ExternalMetricStatus indicates the current value of a global metric not associated with any Kubernetes object.",
"required": [
"metricName",
"currentValue"
],
"properties": {
"currentAverageValue": {
"description": "currentAverageValue is the current value of metric averaged over autoscaled pods.",
"$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
},
"currentValue": {
"description": "currentValue is the current value of the metric (as a quantity)",
"$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.api.resource.Quantity"
},
"metricName": {
"description": "metricName is the name of a metric used for autoscaling in metric system.",
"type": [
"string",
"null"
]
},
"metricSelector": {
"description": "metricSelector is used to identify a specific time series within a given metric.",
"$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector"
}
},
"$schema": "http://json-schema.org/schema#",
"type": "object"
}