├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature-enhancement-request.md ├── PULL_REQUEST_TEMPLATE.md ├── auto-assignees.yml ├── dependabot.yml └── workflows │ ├── auto_assign_prs.yml │ ├── auto_request_review.yml │ ├── lint-test.yaml │ ├── rebase.yml │ ├── release.yml │ └── verify-manifest.yml ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── RELEASE-INSTRUCT.md ├── charts └── velero │ ├── .helmignore │ ├── Chart.yaml │ ├── OWNERS │ ├── README.md │ ├── ci │ └── test-values.yaml │ ├── crds │ ├── backuprepositories.yaml │ ├── backups.yaml │ ├── backupstoragelocations.yaml │ ├── datadownloads.yaml │ ├── datauploads.yaml │ ├── deletebackuprequests.yaml │ ├── downloadrequests.yaml │ ├── podvolumebackups.yaml │ ├── podvolumerestores.yaml │ ├── restores.yaml │ ├── schedules.yaml │ ├── serverstatusrequests.yaml │ └── volumesnapshotlocations.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── backupstoragelocation.yaml │ ├── cleanup-crds.yaml │ ├── clusterrolebinding.yaml │ ├── configmaps.yaml │ ├── deployment.yaml │ ├── extra-manifests.yaml │ ├── label-namespace │ │ └── labelnamespace.yaml │ ├── node-agent-daemonset.yaml │ ├── podmonitor.yaml │ ├── prometheusrule.yaml │ ├── repo-maintenance-configmap.yaml │ ├── role.yaml │ ├── rolebinding.yaml │ ├── schedule.yaml │ ├── secret.yaml │ ├── service.yaml │ ├── serviceaccount-server.yaml │ ├── servicemonitor.yaml │ ├── upgrade-crds │ │ ├── clusterrole-upgrade.yaml │ │ ├── clusterrolebinding-upgrade.yaml │ │ ├── serviceaccount-upgrade.yaml │ │ └── upgrade-crds.yaml │ └── volumesnapshotlocation.yaml │ ├── values.schema.json │ └── values.yaml └── ct.yaml /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-enhancement-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/.github/ISSUE_TEMPLATE/feature-enhancement-request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/auto-assignees.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/.github/auto-assignees.yml -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/auto_assign_prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/.github/workflows/auto_assign_prs.yml -------------------------------------------------------------------------------- /.github/workflows/auto_request_review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/.github/workflows/auto_request_review.yml -------------------------------------------------------------------------------- /.github/workflows/lint-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/.github/workflows/lint-test.yaml -------------------------------------------------------------------------------- /.github/workflows/rebase.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/.github/workflows/rebase.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/verify-manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/.github/workflows/verify-manifest.yml -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE-INSTRUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/RELEASE-INSTRUCT.md -------------------------------------------------------------------------------- /charts/velero/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/.helmignore -------------------------------------------------------------------------------- /charts/velero/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/Chart.yaml -------------------------------------------------------------------------------- /charts/velero/OWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/OWNERS -------------------------------------------------------------------------------- /charts/velero/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/README.md -------------------------------------------------------------------------------- /charts/velero/ci/test-values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/ci/test-values.yaml -------------------------------------------------------------------------------- /charts/velero/crds/backuprepositories.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/crds/backuprepositories.yaml -------------------------------------------------------------------------------- /charts/velero/crds/backups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/crds/backups.yaml -------------------------------------------------------------------------------- /charts/velero/crds/backupstoragelocations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/crds/backupstoragelocations.yaml -------------------------------------------------------------------------------- /charts/velero/crds/datadownloads.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/crds/datadownloads.yaml -------------------------------------------------------------------------------- /charts/velero/crds/datauploads.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/crds/datauploads.yaml -------------------------------------------------------------------------------- /charts/velero/crds/deletebackuprequests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/crds/deletebackuprequests.yaml -------------------------------------------------------------------------------- /charts/velero/crds/downloadrequests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/crds/downloadrequests.yaml -------------------------------------------------------------------------------- /charts/velero/crds/podvolumebackups.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/crds/podvolumebackups.yaml -------------------------------------------------------------------------------- /charts/velero/crds/podvolumerestores.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/crds/podvolumerestores.yaml -------------------------------------------------------------------------------- /charts/velero/crds/restores.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/crds/restores.yaml -------------------------------------------------------------------------------- /charts/velero/crds/schedules.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/crds/schedules.yaml -------------------------------------------------------------------------------- /charts/velero/crds/serverstatusrequests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/crds/serverstatusrequests.yaml -------------------------------------------------------------------------------- /charts/velero/crds/volumesnapshotlocations.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/crds/volumesnapshotlocations.yaml -------------------------------------------------------------------------------- /charts/velero/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/templates/NOTES.txt -------------------------------------------------------------------------------- /charts/velero/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/templates/_helpers.tpl -------------------------------------------------------------------------------- /charts/velero/templates/backupstoragelocation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/templates/backupstoragelocation.yaml -------------------------------------------------------------------------------- /charts/velero/templates/cleanup-crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/templates/cleanup-crds.yaml -------------------------------------------------------------------------------- /charts/velero/templates/clusterrolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/templates/clusterrolebinding.yaml -------------------------------------------------------------------------------- /charts/velero/templates/configmaps.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/templates/configmaps.yaml -------------------------------------------------------------------------------- /charts/velero/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/templates/deployment.yaml -------------------------------------------------------------------------------- /charts/velero/templates/extra-manifests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/templates/extra-manifests.yaml -------------------------------------------------------------------------------- /charts/velero/templates/label-namespace/labelnamespace.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/templates/label-namespace/labelnamespace.yaml -------------------------------------------------------------------------------- /charts/velero/templates/node-agent-daemonset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/templates/node-agent-daemonset.yaml -------------------------------------------------------------------------------- /charts/velero/templates/podmonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/templates/podmonitor.yaml -------------------------------------------------------------------------------- /charts/velero/templates/prometheusrule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/templates/prometheusrule.yaml -------------------------------------------------------------------------------- /charts/velero/templates/repo-maintenance-configmap.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/templates/repo-maintenance-configmap.yaml -------------------------------------------------------------------------------- /charts/velero/templates/role.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/templates/role.yaml -------------------------------------------------------------------------------- /charts/velero/templates/rolebinding.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/templates/rolebinding.yaml -------------------------------------------------------------------------------- /charts/velero/templates/schedule.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/templates/schedule.yaml -------------------------------------------------------------------------------- /charts/velero/templates/secret.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/templates/secret.yaml -------------------------------------------------------------------------------- /charts/velero/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/templates/service.yaml -------------------------------------------------------------------------------- /charts/velero/templates/serviceaccount-server.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/templates/serviceaccount-server.yaml -------------------------------------------------------------------------------- /charts/velero/templates/servicemonitor.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/templates/servicemonitor.yaml -------------------------------------------------------------------------------- /charts/velero/templates/upgrade-crds/clusterrole-upgrade.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/templates/upgrade-crds/clusterrole-upgrade.yaml -------------------------------------------------------------------------------- /charts/velero/templates/upgrade-crds/clusterrolebinding-upgrade.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/templates/upgrade-crds/clusterrolebinding-upgrade.yaml -------------------------------------------------------------------------------- /charts/velero/templates/upgrade-crds/serviceaccount-upgrade.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/templates/upgrade-crds/serviceaccount-upgrade.yaml -------------------------------------------------------------------------------- /charts/velero/templates/upgrade-crds/upgrade-crds.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/templates/upgrade-crds/upgrade-crds.yaml -------------------------------------------------------------------------------- /charts/velero/templates/volumesnapshotlocation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/templates/volumesnapshotlocation.yaml -------------------------------------------------------------------------------- /charts/velero/values.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/values.schema.json -------------------------------------------------------------------------------- /charts/velero/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/charts/velero/values.yaml -------------------------------------------------------------------------------- /ct.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/helm-charts/HEAD/ct.yaml --------------------------------------------------------------------------------