forked from garethr/kubernetes-json-schema
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhorizontalpodautoscalerstatus.json
38 lines (38 loc) · 1.27 KB
/
horizontalpodautoscalerstatus.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
{
"additionalProperties": false,
"required": [
"currentReplicas",
"desiredReplicas"
],
"description": "current status of a horizontal pod autoscaler",
"properties": {
"observedGeneration": {
"type": "integer",
"description": "most recent generation observed by this autoscaler.",
"format": "int64"
},
"currentReplicas": {
"type": "integer",
"description": "current number of replicas of pods managed by this autoscaler.",
"format": "int32"
},
"lastScaleTime": {
"type": [
"string",
"null"
],
"description": "Time is a wrapper around time.Time which supports correct marshaling to YAML and JSON. Wrappers are provided for many of the factory methods that the time package offers.",
"format": "date-time"
},
"currentCPUUtilizationPercentage": {
"type": "integer",
"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.",
"format": "int32"
},
"desiredReplicas": {
"type": "integer",
"description": "desired number of replicas of pods managed by this autoscaler.",
"format": "int32"
}
}
}