@jkcfg/kubernetes
Version:
jk Kubernetes library
27 lines • 891 B
JSON
{
"description": "ObjectMetricStatus indicates the current value of a metric describing a kubernetes object (for example, hits-per-second on an Ingress object).",
"required": [
"target",
"metricName",
"currentValue"
],
"properties": {
"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 the metric in question.",
"type": [
"string",
"null"
]
},
"target": {
"description": "target is the described Kubernetes object.",
"$ref": "_definitions.json#/definitions/io.k8s.api.autoscaling.v2beta1.CrossVersionObjectReference"
}
},
"$schema": "http://json-schema.org/schema#",
"type": "object"
}