File tree 4 files changed +19
-1
lines changed
4 files changed +19
-1
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ appVersion: 1.13.2
3
3
kubeVersion : " >=1.16.0-0"
4
4
description : A Helm chart for velero
5
5
name : velero
6
- version : 6.4 .0
6
+ version : 6.5 .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 @@ -8,6 +8,12 @@ kind: BackupStorageLocation
8
8
metadata :
9
9
name : {{ .name | default "default" }}
10
10
namespace : {{ $.Release.Namespace }}
11
+ {{- with .annotations }}
12
+ annotations :
13
+ {{- range $key, $value := . }}
14
+ {{- $key | nindent 4 }}: {{ $value | quote }}
15
+ {{- end }}
16
+ {{- end }}
11
17
labels :
12
18
app.kubernetes.io/name : {{ include "velero.name" $ }}
13
19
app.kubernetes.io/instance : {{ $.Release.Name }}
Original file line number Diff line number Diff line change @@ -8,6 +8,12 @@ kind: VolumeSnapshotLocation
8
8
metadata :
9
9
name : {{ .name | default "default" }}
10
10
namespace : {{ $.Release.Namespace }}
11
+ {{- with .annotations }}
12
+ annotations :
13
+ {{- range $key, $value := . }}
14
+ {{- $key | nindent 4 }}: {{ $value | quote }}
15
+ {{- end }}
16
+ {{- end }}
11
17
labels :
12
18
app.kubernetes.io/name : {{ include "velero.name" $ }}
13
19
app.kubernetes.io/instance : {{ $.Release.Name }}
Original file line number Diff line number Diff line change @@ -362,6 +362,9 @@ configuration:
362
362
# flag. For Velero client Command like velero backup describe, velero backup logs needs to add the flag --insecure-skip-tls-verify
363
363
# insecureSkipTLSVerify:
364
364
365
+ # annotations allows adding arbitrary annotations to this BackupStorageLocation resource. Optional.
366
+ annotations : {}
367
+
365
368
# Parameters for the VolumeSnapshotLocation(s). Configure multiple by adding other element(s) to the volumeSnapshotLocation slice.
366
369
# See https://velero.io/docs/v1.6/api-types/volumesnapshotlocation/
367
370
volumeSnapshotLocation :
@@ -386,6 +389,9 @@ configuration:
386
389
# snapshotLocation:
387
390
# project:
388
391
392
+ # annotations allows adding arbitrary annotations to this VolumeSnapshotLocation resource. Optional.
393
+ annotations : {}
394
+
389
395
# These are server-level settings passed as CLI flags to the `velero server` command. Velero
390
396
# uses default values if they're not passed in, so they only need to be explicitly specified
391
397
# here if using a non-default value. The `velero server` default values are shown in the
You can’t perform that action at this time.
0 commit comments