From 0ad4a9e36409bf7c89178a95af057107a4ca1e65 Mon Sep 17 00:00:00 2001 From: Kjeld Schouten Date: Tue, 14 Nov 2023 21:43:28 +0100 Subject: [PATCH] add 3 required storage plugins for csi-snapshotter, aws/s3 and openebs --- charts/incubator/velero/Chart.yaml | 2 +- charts/incubator/velero/values.yaml | 24 ++++++++++++++++++------ 2 files changed, 19 insertions(+), 7 deletions(-) diff --git a/charts/incubator/velero/Chart.yaml b/charts/incubator/velero/Chart.yaml index 590763ed09a..b897b42f5cc 100644 --- a/charts/incubator/velero/Chart.yaml +++ b/charts/incubator/velero/Chart.yaml @@ -26,7 +26,7 @@ sources: - https://github.com/cert-manager - https://cert-manager.io/ type: application -version: 0.0.1 +version: 0.0.2 annotations: truecharts.org/category: operators truecharts.org/SCALE-support: "true" diff --git a/charts/incubator/velero/values.yaml b/charts/incubator/velero/values.yaml index a5768336751..452b715d3f9 100644 --- a/charts/incubator/velero/values.yaml +++ b/charts/incubator/velero/values.yaml @@ -49,12 +49,24 @@ velero: # Init containers to add to the Velero deployment's pod spec. At least one plugin provider image is required. # If the value is a string then it is evaluated as a template. initContainers: - # - name: opeebs-velero-plugin - # image: openebs/velero-plugin:1.9.0 - # imagePullPolicy: IfNotPresent - # volumeMounts: - # - mountPath: /target - # name: plugins + - name: opeebs-velero-plugin + image: openebs/velero-plugin:1.9.0 + imagePullPolicy: IfNotPresent + volumeMounts: + - mountPath: /target + name: plugins + - name: velero-plugin-for-csi + image: velero/velero-plugin-for-csi:v0.6.0 + imagePullPolicy: IfNotPresent + volumeMounts: + - mountPath: /target + name: plugins + - name: velero-plugin-for-aws + image: velero/velero-plugin-for-aws:v1.8.0 + imagePullPolicy: IfNotPresent + volumeMounts: + - mountPath: /target + name: plugins # Whether to deploy the node-agent daemonset. deployNodeAgent: true