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: charts/cluster-autoscaler/README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -421,6 +421,8 @@ vpa:
421
421
minAllowed:
422
422
cpu: 20m
423
423
memory: 50Mi
424
+
recommenders:
425
+
- name: default
424
426
```
425
427
426
428
## Values
@@ -536,4 +538,5 @@ vpa:
536
538
| vpa | object |`{"containerPolicy":{},"enabled":false,"updateMode":"Auto"}`| Configure a VerticalPodAutoscaler for the cluster-autoscaler Deployment. |
537
539
| vpa.containerPolicy | object |`{}`|[ContainerResourcePolicy](https://github.com/kubernetes/autoscaler/blob/vertical-pod-autoscaler/v0.13.0/vertical-pod-autoscaler/pkg/apis/autoscaling.k8s.io/v1/types.go#L159). The containerName is always et to the deployment's container name. This value is required if VPA is enabled. |
538
540
| vpa.enabled | bool |`false`| If true, creates a VerticalPodAutoscaler. |
541
+
| vpa.recommenders | list |`[]`| List of recommender selectors that will apply to this VerticalPodAutoscaler. An empty list uses the `default` recommender. |
Copy file name to clipboardExpand all lines: charts/cluster-autoscaler/values.yaml
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -489,6 +489,10 @@ vpa:
489
489
updateMode: "Auto"
490
490
# vpa.containerPolicy -- [ContainerResourcePolicy](https://github.com/kubernetes/autoscaler/blob/vertical-pod-autoscaler/v0.13.0/vertical-pod-autoscaler/pkg/apis/autoscaling.k8s.io/v1/types.go#L159). The containerName is always et to the deployment's container name. This value is required if VPA is enabled.
491
491
containerPolicy: {}
492
+
# vpa.recommenders -- VPA recommenders that will provide recommendations for vertical scaling
493
+
# When the recommenders list is empty, the recommender 'default' is used
494
+
recommenders: []
495
+
# - name: my-recommender
492
496
493
497
# secretKeyRefNameOverride -- Overrides the name of the Secret to use when loading the secretKeyRef for AWS, Azure and Civo env variables
0 commit comments