Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ spec:
securityContext:
{{ toYaml . | nindent 8 | trim }}
{{- end }}
{{- with .Values.updater.tolerations }}
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
containers:
- name: updater
image: {{ include "vertical-pod-autoscaler.updater.image" . }}
Expand Down
15 changes: 11 additions & 4 deletions vertical-pod-autoscaler/charts/vertical-pod-autoscaler/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ admissionController:
extraArgs: []

# Resources for the Admission Controller default container.
resources: {}
resources:
{}
Comment on lines +66 to +67
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why this change?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

My editor made some formatting changes but I can revert them if you like.

# limits:
# cpu: 200m
# memory: 500Mi
Expand Down Expand Up @@ -142,7 +143,8 @@ recommender:
extraArgs: []

# Resources for the Recommender default container.
resources: {}
resources:
{}
# limits:
# cpu: 200m
# memory: 1000Mi
Expand Down Expand Up @@ -208,14 +210,18 @@ updater:

# Annotations to add to the Updater pod.
podAnnotations: {}

# Tolerations for scheduling the Updater.
tolerations: []

serviceAccount:
# If `true`, create a new `ServiceAccount` for the Updater.
create: true
# Labels to add to the Updater service account.
labels: {}
# Annotations to add to the Updater service account.
annotations: {}

# Leader election configuration for the Updater.
# When running multiple replicas, leader election ensures only one instance is actively processing.
leaderElection:
Expand Down Expand Up @@ -243,7 +249,8 @@ updater:
maxUnavailable:

# Resources for the updater Controller
resources: {}
resources:
{}
# limits:
# cpu: 200m
# memory: 500Mi
Expand Down
Loading