File tree 3 files changed +36
-1
lines changed
3 files changed +36
-1
lines changed Original file line number Diff line number Diff line change
1
+ from transpire import helm
2
+ from transpire .utils import get_versions
3
+
4
+ values = {
5
+ # At least one plugin provider image is required.
6
+ "initContainers" : [
7
+ {
8
+ "name" : "velero-plugin-for-csi" ,
9
+ "image" : "velero/velero-plugin-for-csi:v0.7.0" ,
10
+ "imagePullPolicy" : "IfNotPresent" ,
11
+ "volumeMounts" : [
12
+ {
13
+ "mountPath" : "/target" ,
14
+ "name" : "plugins" ,
15
+ },
16
+ ],
17
+ },
18
+ ],
19
+ "configuration" : {
20
+ "backupStorageLocation" : [],
21
+ "volumeSnapshotLocation" : [],
22
+ },
23
+ }
24
+
25
+ name = "velero"
26
+
27
+
28
+ def objects ():
29
+ yield from helm .build_chart_from_versions (
30
+ name = "velero" ,
31
+ versions = get_versions (__file__ ),
32
+ values = values ,
33
+ )
34
+
Original file line number Diff line number Diff line change @@ -111,5 +111,5 @@ version = "2.5.4"
111
111
helm = " https://ricoberger.github.io/helm-charts"
112
112
113
113
[velero ]
114
- version = " 5 .0.2 "
114
+ version = " 6 .0.0 "
115
115
helm = " https://vmware-tanzu.github.io/helm-charts/"
Original file line number Diff line number Diff line change @@ -37,6 +37,7 @@ rook = { path = "apps/rook.py" }
37
37
teleport = { path = " apps/teleport.py" }
38
38
vault = { path = " apps/vault.py" }
39
39
vault-secrets-operator = { path = " apps/vault_secrets_operator.py" }
40
+ velero = { path = " apps/velero.py" }
40
41
41
42
etc = { git = " https://github.com/ocf/etc" }
42
43
id6 = { git = " https://github.com/ocf/id6" }
You can’t perform that action at this time.
0 commit comments