File tree 3 files changed +13
-1
lines changed
3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ appVersion: 1.13.0
3
3
kubeVersion : " >=1.16.0-0"
4
4
description : A Helm chart for velero
5
5
name : velero
6
- version : 6.1 .0
6
+ version : 6.2 .0
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 @@ -123,6 +123,9 @@ spec:
123
123
{{- with .disableControllers }}
124
124
- --disable-controllers={{ . }}
125
125
{{- end }}
126
+ {{- with .disableInformerCache }}
127
+ - --disable-informer-cache={{ . }}
128
+ {{- end }}
126
129
{{- with .garbageCollectionFrequency }}
127
130
- --garbage-collection-frequency={{ . }}
128
131
{{- end }}
@@ -163,6 +166,10 @@ spec:
163
166
{{- with .namespace }}
164
167
- --namespace={{ . }}
165
168
{{- end }}
169
+ {{- with .extraArgs }}
170
+ # ## User-supplied overwrite flags
171
+ {{- toYaml . | nindent 12 }}
172
+ {{- end }}
166
173
{{- end }}
167
174
{{- with .Values.resources }}
168
175
resources :
Original file line number Diff line number Diff line change @@ -413,6 +413,8 @@ configuration:
413
413
defaultVolumeSnapshotLocations :
414
414
# `velero server` default: empty
415
415
disableControllers :
416
+ # `velero server` default: false
417
+ disableInformerCache : false
416
418
# `velero server` default: 1h
417
419
garbageCollectionFrequency :
418
420
# Set log-format for Velero pod. Default: text. Other option: json.
@@ -440,6 +442,9 @@ configuration:
440
442
features :
441
443
# `velero server` default: velero
442
444
namespace :
445
+ # additional command-line arguments that will be passed to the `velero server`
446
+ # e.g.: extraArgs: ["--foo=bar"]
447
+ extraArgs : []
443
448
444
449
# additional key/value pairs to be used as environment variables such as "AWS_CLUSTER_NAME: 'yourcluster.domain.tld'"
445
450
extraEnvVars : {}
You can’t perform that action at this time.
0 commit comments