vmware-tanzu / helm-charts

Contains Helm charts for Kubernetes related open source tools
https://vmware-tanzu.github.io/helm-charts/
Apache License 2.0
254 stars 363 forks source link

How to add multiple plugin in the charts #605

Open WRKT opened 4 months ago

WRKT commented 4 months ago

Hello, I am currently developping a custom restoreItemAction for velero to solve one of my problem, and I have a question of how can I add it to the current values without impacting the provider plugin:

initContainers:
          - name: velero-plugin-for-aws
            image: velero/velero-plugin-for-aws:v1.9.0
            imagePullPolicy: IfNotPresent
            volumeMounts:
              - mountPath: /target
                name: plugins
          - name: velero-custom-plugins
            image: registry/velero/velero-custom-plugins:1.0
            imagePullPolicy: IfNotPresent
            volumeMounts:
              - mountPath: /target
                name: custom-plugins
extraVolumes:
          - custom-plugins

Will this override the velero plugin for aws ? or am I doing right ?