Skip to content

Commit 09d3f66

Browse files
authored
Merge pull request #115486 from Potapy4/patch-25
Fix typo in column name
2 parents 7ab9bc9 + e7e6fe3 commit 09d3f66

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

articles/aks/vertical-pod-autoscaler-api-reference.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -14,15 +14,15 @@ This reference is based on version 0.13.0 of the AKS implementation of VPA.
1414

1515
## VerticalPodAutoscaler
1616

17-
|Name |Ojbect |Description |
17+
|Name |Object |Description |
1818
|-------|-------||-------|
1919
|metadata |ObjectMeta | Standard [object metadata][object-metadata-ref].|
2020
|spec |VerticalPodAutoscalerSpec |The desired behavior of the Vertical Pod Autoscaler.|
2121
|status |VerticalPodAutoscalerStatus |The most recently observed status of the Vertical Pod Autoscaler. |
2222

2323
## VerticalPodAutoscalerSpec
2424

25-
|Name |Ojbect |Description |
25+
|Name |Object |Description |
2626
|-------|-------||-------|
2727
|targetRef |CrossVersionObjectReference | Reference to the controller managing the set of pods for the autoscaler to control. For example, a Deployment or a StatefulSet. You can point a Vertical Pod Autoscaler at any controller that has a [Scale][scale-ref] subresource. Typically, the Vertical Pod Autoscaler retrieves the pod set from the controller's ScaleStatus. |
2828
|updatePolicy |PodUpdatePolicy |Specifies whether recommended updates are applied when a pod is started and whether recommended updates are applied during the life of a pod. |
@@ -31,27 +31,27 @@ This reference is based on version 0.13.0 of the AKS implementation of VPA.
3131

3232
## VerticalPodAutoscalerList
3333

34-
|Name |Ojbect |Description |
34+
|Name |Object |Description |
3535
|-------|-------||-------|
3636
|metadata |ObjectMeta |Standard [object metadata][object-metadata-ref]. |
3737
|items |VerticalPodAutoscaler (array) |A list of Vertical Pod Autoscaler objects. |
3838

3939
## PodUpdatePolicy
4040

41-
|Name |Ojbect |Description |
41+
|Name |Object |Description |
4242
|-------|-------||-------|
4343
|updateMode |string |A string that specifies whether recommended updates are applied when a pod is started and whether recommended updates are applied during the life of a pod. Possible values are `Off`, `Initial`, `Recreate`, and `Auto`. The default is `Auto` if you don't specify a value. |
4444
|minReplicas |int32 |A value representing the minimal number of replicas which need to be alive for Updater to attempt pod eviction (pending other checks like Pod Disruption Budget). Only positive values are allowed. Defaults to global `--min-replicas` flag, which is set to `2`. |
4545

4646
## PodResourcePolicy
4747

48-
|Name |Ojbect |Description |
48+
|Name |Object |Description |
4949
|-------|-------||-------|
5050
|conainerPolicies |ContainerResourcePolicy |An array of resource policies for individual containers. There can be at most one entry for every named container, and optionally a single wildcard entry with `containerName = '*'`, which handles all containers that do not have individual policies. |
5151

5252
## ContainerResourcePolicy
5353

54-
|Name |Ojbect |Description |
54+
|Name |Object |Description |
5555
|-------|-------||-------|
5656
|containerName |string |A string that specifies the name of the container that the policy applies to. If not specified, the policy serves as the default policy. |
5757
|mode |ContainerScalingMode |Specifies whether recommended updates are applied to the container when it is started and whether recommended updates are applied during the life of the container. Possible values are `Off` and `Auto`. The default is `Auto` if you don't specify a value. |
@@ -61,26 +61,26 @@ This reference is based on version 0.13.0 of the AKS implementation of VPA.
6161

6262
## VerticalPodAutoscalerRecommenderSelector
6363

64-
|Name |Ojbect |Description |
64+
|Name |Object |Description |
6565
|-------|-------||-------|
6666
|name |string |A string that specifies the name of the recommender responsible for generating recommendation for this object. |
6767

6868
## VerticalPodAutoscalerStatus
6969

70-
|Name |Ojbect |Description |
70+
|Name |Object |Description |
7171
|-------|-------||-------|
7272
|recommendation |RecommendedPodResources |The most recently recommended CPU and memory requests. |
7373
|conditions |VerticalPodAutoscalerCondition | An array that describes the current state of the Vertical Pod Autoscaler. |
7474

7575
## RecommendedPodResources
7676

77-
|Name |Ojbect |Description |
77+
|Name |Object |Description |
7878
|-------|-------||-------|
7979
|containerRecommendation |RecommendedContainerResources |An array of resources recommendations for individual containers. |
8080

8181
## RecommendedContainerResources
8282

83-
|Name |Ojbect |Description |
83+
|Name |Object |Description |
8484
|-------|-------||-------|
8585
|containerName |string| A string that specifies the name of the container that the recommendation applies to. |
8686
|target |ResourceList |The recommended CPU request and memory request for the container. |
@@ -90,7 +90,7 @@ This reference is based on version 0.13.0 of the AKS implementation of VPA.
9090

9191
## VerticalPodAutoscalerCondition
9292

93-
|Name |Ojbect |Description |
93+
|Name |Object |Description |
9494
|-------|-------||-------|
9595
|type |VerticalPodAutoscalerConditionType |The type of condition being described. Possible values are `RecommendationProvided`, `LowConfidence`, `NoPodsMatched`, and `FetchingHistory`. |
9696
|status |ConditionStatus |The status of the condition. Possible values are `True`, `False`, and `Unknown`. |

0 commit comments

Comments
 (0)