@jkcfg/kubernetes
Version:
jk Kubernetes library
35 lines • 1.29 kB
JSON
{
"description": "current status of a horizontal pod autoscaler",
"required": [
"currentReplicas",
"desiredReplicas"
],
"properties": {
"currentCPUUtilizationPercentage": {
"description": "current average CPU utilization over all pods, represented as a percentage of requested CPU, e.g. 70 means that an average pod is using now 70% of its requested CPU.",
"type": "integer",
"format": "int32"
},
"currentReplicas": {
"description": "current number of replicas of pods managed by this autoscaler.",
"type": "integer",
"format": "int32"
},
"desiredReplicas": {
"description": "desired number of replicas of pods managed by this autoscaler.",
"type": "integer",
"format": "int32"
},
"lastScaleTime": {
"description": "last time the HorizontalPodAutoscaler scaled the number of pods; used by the autoscaler to control how often the number of pods is changed.",
"$ref": "_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
},
"observedGeneration": {
"description": "most recent generation observed by this autoscaler.",
"type": "integer",
"format": "int64"
}
},
"$schema": "http://json-schema.org/schema#",
"type": "object"
}