File tree 3 files changed +28
-1
lines changed
3 files changed +28
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ appVersion: 1.14.0
3
3
kubeVersion : " >=1.16.0-0"
4
4
description : A Helm chart for velero
5
5
name : velero
6
- version : 7.1.1
6
+ version : 7.1.2
7
7
home : https://github.com/vmware-tanzu/velero
8
8
icon : https://cdn-images-1.medium.com/max/1600/1*-9mb3AKnKdcL_QD3CMnthQ.png
9
9
sources :
Original file line number Diff line number Diff line change @@ -166,6 +166,24 @@ spec:
166
166
{{- with .namespace }}
167
167
- --namespace={{ . }}
168
168
{{- end }}
169
+ {{- with .repositoryMaintenanceJob }}
170
+ {{- with .requests }}
171
+ {{- with .cpu }}
172
+ - --maintenance-job-cpu-request={{ .cpu }}
173
+ {{- end }}
174
+ {{- with .memory }}
175
+ - --maintenance-job-mem-request={{ .memory }}
176
+ {{- end }}
177
+ {{- end }}
178
+ {{- with .limits }}
179
+ {{- with .cpu }}
180
+ - --maintenance-job-cpu-limit={{ . }}
181
+ {{- end }}
182
+ {{- with .memory }}
183
+ - --maintenance-job-mem-limit={{ . }}
184
+ {{- end }}
185
+ {{- end }}
186
+ {{- end }}
169
187
{{- with .extraArgs }}
170
188
# ## User-supplied overwrite flags
171
189
{{- toYaml . | nindent 12 }}
Original file line number Diff line number Diff line change @@ -440,6 +440,15 @@ configuration:
440
440
# Comma separated list of velero feature flags. default: empty
441
441
# features: EnableCSI
442
442
features :
443
+ # Resource requests/limits to specify for the repository-maintenance job. Optional.
444
+ # https://velero.io/docs/v1.14/repository-maintenance/#resource-limitation
445
+ repositoryMaintenanceJob :
446
+ requests :
447
+ # cpu: 500m
448
+ # memory: 512Mi
449
+ limits :
450
+ # cpu: 1000m
451
+ # memory: 1024Mi
443
452
# `velero server` default: velero
444
453
namespace :
445
454
# additional command-line arguments that will be passed to the `velero server`
You can’t perform that action at this time.
0 commit comments