You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/aks/vertical-pod-autoscaler.md
+4-5Lines changed: 4 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,9 +1,8 @@
1
1
---
2
2
title: Vertical Pod Autoscaling (preview) in Azure Kubernetes Service (AKS)
3
3
description: Learn how to vertically autoscale your pod on an Azure Kubernetes Service (AKS) cluster.
4
-
services: container-service
5
4
ms.topic: article
6
-
ms.date: 01/11/2023
5
+
ms.date: 01/12/2023
7
6
---
8
7
9
8
# Vertical Pod Autoscaling (preview) in Azure Kubernetes Service (AKS)
@@ -402,7 +401,7 @@ If the metrics server throttling rate is high and the memory usage of its two po
402
401
403
402
To update the coefficient values, create a ConfigMap in the overlay *kube-system* namespace to override the values in the metrics server specification. Perform the following steps to update the metrics server.
404
403
405
-
1. Create a ConfigMap file named *metrics-server-config.yaml* and copy in the following manifest.
404
+
1. Create a ConfigMap file named *metrics-server-config.yaml* and copy in the following manifest.
406
405
407
406
```yml
408
407
apiVersion: v1
@@ -426,7 +425,7 @@ To update the coefficient values, create a ConfigMap in the overlay *kube-system
426
425
In this ConfigMap example, it changes the resource limit and request to the following:
427
426
428
427
* cpu: (100+1n)millicore
429
-
* memory: (100+8n)mebibyte
428
+
* memory: (100+8n)mebibyte
430
429
431
430
Where *n* is the number of nodes.
432
431
@@ -436,7 +435,7 @@ To update the coefficient values, create a ConfigMap in the overlay *kube-system
436
435
kubectl apply -f metrics-server-config.yaml
437
436
```
438
437
439
-
Be cautious of the baseCPU, cpuPerNode, baseMemory, and the memoryPerNode. This ConfigMap will not be reconciled by AKS. As a recommended practice, increase the value step by step to avoid unnecessary resource consumption. Proactively monitor resource usage when updating or creating the ConfigMap. A large number of resource requests could negatively impact the node.
438
+
Be cautious of the *baseCPU*, *cpuPerNode*, *baseMemory*, and the *memoryPerNode*. This ConfigMap will not be reconciled by AKS. As a recommended practice, increase the value gradually to avoid unnecessary resource consumption. Proactively monitor resource usage when updating or creating the ConfigMap. A large number of resource requests could negatively impact the node.
0 commit comments