├── .dockerignore ├── .github ├── auto-assignees.yml └── workflows │ ├── auto_assign_prs.yml │ ├── auto_request_review.yml │ ├── pr.yaml │ └── push.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Makefile ├── README.md ├── backupstoragelocation.md ├── changelogs ├── CHANGELOG-1.10.0.md ├── CHANGELOG-1.13.0.md ├── CHANGELOG-1.2.0.md ├── CHANGELOG-1.2.1.md ├── CHANGELOG-1.3.0.md ├── CHANGELOG-1.4.0.md ├── CHANGELOG-1.5.0.md ├── CHANGELOG-1.6.0.md ├── CHANGELOG-1.7.0.md ├── CHANGELOG-1.8.0.md └── CHANGELOG-1.9.0.md ├── go.mod ├── go.sum ├── hack ├── build.sh ├── ci │ └── build_util.sh ├── cp-plugin │ └── main.go ├── docker-push.sh └── release-tools │ └── changelog.sh ├── tilt-provider.json ├── velero-plugin-for-aws ├── config.go ├── helpers.go ├── helpers_test.go ├── main.go ├── object_store.go ├── object_store_test.go ├── test_logger.go ├── volume_snapshotter.go └── volume_snapshotter_test.go └── volumesnapshotlocation.md /.dockerignore: -------------------------------------------------------------------------------- 1 | _output 2 | -------------------------------------------------------------------------------- /.github/auto-assignees.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/.github/auto-assignees.yml -------------------------------------------------------------------------------- /.github/workflows/auto_assign_prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/.github/workflows/auto_assign_prs.yml -------------------------------------------------------------------------------- /.github/workflows/auto_request_review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/.github/workflows/auto_request_review.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/.github/workflows/pr.yaml -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/README.md -------------------------------------------------------------------------------- /backupstoragelocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/backupstoragelocation.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-1.10.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/changelogs/CHANGELOG-1.10.0.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-1.13.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/changelogs/CHANGELOG-1.13.0.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-1.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/changelogs/CHANGELOG-1.2.0.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-1.2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/changelogs/CHANGELOG-1.2.1.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-1.3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/changelogs/CHANGELOG-1.3.0.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-1.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/changelogs/CHANGELOG-1.4.0.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-1.5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/changelogs/CHANGELOG-1.5.0.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-1.6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/changelogs/CHANGELOG-1.6.0.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-1.7.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/changelogs/CHANGELOG-1.7.0.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-1.8.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/changelogs/CHANGELOG-1.8.0.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-1.9.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/changelogs/CHANGELOG-1.9.0.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/go.sum -------------------------------------------------------------------------------- /hack/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/hack/build.sh -------------------------------------------------------------------------------- /hack/ci/build_util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/hack/ci/build_util.sh -------------------------------------------------------------------------------- /hack/cp-plugin/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/hack/cp-plugin/main.go -------------------------------------------------------------------------------- /hack/docker-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/hack/docker-push.sh -------------------------------------------------------------------------------- /hack/release-tools/changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/hack/release-tools/changelog.sh -------------------------------------------------------------------------------- /tilt-provider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/tilt-provider.json -------------------------------------------------------------------------------- /velero-plugin-for-aws/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/velero-plugin-for-aws/config.go -------------------------------------------------------------------------------- /velero-plugin-for-aws/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/velero-plugin-for-aws/helpers.go -------------------------------------------------------------------------------- /velero-plugin-for-aws/helpers_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/velero-plugin-for-aws/helpers_test.go -------------------------------------------------------------------------------- /velero-plugin-for-aws/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/velero-plugin-for-aws/main.go -------------------------------------------------------------------------------- /velero-plugin-for-aws/object_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/velero-plugin-for-aws/object_store.go -------------------------------------------------------------------------------- /velero-plugin-for-aws/object_store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/velero-plugin-for-aws/object_store_test.go -------------------------------------------------------------------------------- /velero-plugin-for-aws/test_logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/velero-plugin-for-aws/test_logger.go -------------------------------------------------------------------------------- /velero-plugin-for-aws/volume_snapshotter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/velero-plugin-for-aws/volume_snapshotter.go -------------------------------------------------------------------------------- /velero-plugin-for-aws/volume_snapshotter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/velero-plugin-for-aws/volume_snapshotter_test.go -------------------------------------------------------------------------------- /volumesnapshotlocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-aws/HEAD/volumesnapshotlocation.md --------------------------------------------------------------------------------