seriohub / velero-helm

Helm charts for velero-ui, velero-api, and velero-watchdog
6 stars 3 forks source link

Will you add velero-helm to https://artifacthub.io/ #7

Closed rchekhina closed 1 month ago

rchekhina commented 2 months ago

HI,

Will you add velero-helm to https://artifacthub.io/ ? Its to deploy it with argocd.

Best regards.

davideserio commented 1 month ago

I have updated the README with instructions for using a repository. You can find the details in the README file. Please let us know if you encounter any problems or if the installation is successful.

rchekhina commented 1 month ago

HI Davide,

ok thanks for this. I have successfully deploy it with kustomize like following:

apiVersion: kustomize.config.k8s.io/v1beta1
kind: Kustomization
namespace: velero
generatorOptions:
  disableNameSuffixHash: true

helmCharts:
- name: vui
  repo: https://seriohub.github.io/velero-helm/
  version: 0.1.6
  releaseName: velero-ui
  valuesFile: ./values.yaml
  namespace: velero-ui
resources:
  - velero-ui-ns.yaml

Best regards.