forked from instrumenta/kubernetes-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathhorizontalpodautoscalerstatus-autoscaling-v1.json
47 lines (47 loc) · 1.43 KB
/
horizontalpodautoscalerstatus-autoscaling-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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"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",
"null"
],
"format": "int32"
},
"currentReplicas": {
"description": "current number of replicas of pods managed by this autoscaler.",
"type": [
"integer",
"null"
],
"format": "int32"
},
"desiredReplicas": {
"description": "desired number of replicas of pods managed by this autoscaler.",
"type": [
"integer",
"null"
],
"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": "https://kubernetesjsonschema.dev/v1.12.1/_definitions.json#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.Time"
},
"observedGeneration": {
"description": "most recent generation observed by this autoscaler.",
"type": [
"integer",
"null"
],
"format": "int64"
}
},
"$schema": "http://json-schema.org/schema#",
"type": "object"
}