Skip to content

Commit dbe5b3e

Browse files
committed
feat: install velero
1 parent 33c713d commit dbe5b3e

File tree

3 files changed

+36
-1
lines changed

3 files changed

+36
-1
lines changed

apps/velero.py

+34
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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+

apps/versions.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,5 +111,5 @@ version = "2.5.4"
111111
helm = "https://ricoberger.github.io/helm-charts"
112112

113113
[velero]
114-
version = "5.0.2"
114+
version = "6.0.0"
115115
helm = "https://vmware-tanzu.github.io/helm-charts/"

cluster.toml

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ rook = { path = "apps/rook.py" }
3737
teleport = { path = "apps/teleport.py" }
3838
vault = { path = "apps/vault.py" }
3939
vault-secrets-operator = { path = "apps/vault_secrets_operator.py" }
40+
velero = { path = "apps/velero.py" }
4041

4142
etc = { git = "https://github.com/ocf/etc" }
4243
id6 = { git = "https://github.com/ocf/id6" }

0 commit comments

Comments
 (0)