├── .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.md ├── CHANGELOG-1.11.md ├── CHANGELOG-1.12.md ├── CHANGELOG-1.13.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.md ├── CHANGELOG-1.8.md ├── CHANGELOG-1.9.md └── unreleased │ ├── 178-opdude │ └── 239-prasadjoshi12 ├── examples ├── README.md ├── backup_at_b_restore_at_a.md └── velero_at_a_br_at_other.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-gcp ├── main.go ├── object_store.go ├── object_store_test.go ├── volume_snapshotter.go └── volume_snapshotter_test.go └── volumesnapshotlocation.md /.dockerignore: -------------------------------------------------------------------------------- 1 | _output -------------------------------------------------------------------------------- /.github/auto-assignees.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/.github/auto-assignees.yml -------------------------------------------------------------------------------- /.github/workflows/auto_assign_prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/.github/workflows/auto_assign_prs.yml -------------------------------------------------------------------------------- /.github/workflows/auto_request_review.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/.github/workflows/auto_request_review.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/.github/workflows/pr.yaml -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/README.md -------------------------------------------------------------------------------- /backupstoragelocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/backupstoragelocation.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-1.10.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/changelogs/CHANGELOG-1.10.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-1.11.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/changelogs/CHANGELOG-1.11.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-1.12.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/changelogs/CHANGELOG-1.12.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-1.13.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/changelogs/CHANGELOG-1.13.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-1.2.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/changelogs/CHANGELOG-1.2.0.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-1.2.1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/changelogs/CHANGELOG-1.2.1.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-1.3.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/changelogs/CHANGELOG-1.3.0.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-1.4.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/changelogs/CHANGELOG-1.4.0.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-1.5.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/changelogs/CHANGELOG-1.5.0.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-1.6.0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/changelogs/CHANGELOG-1.6.0.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-1.7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/changelogs/CHANGELOG-1.7.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-1.8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/changelogs/CHANGELOG-1.8.md -------------------------------------------------------------------------------- /changelogs/CHANGELOG-1.9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/changelogs/CHANGELOG-1.9.md -------------------------------------------------------------------------------- /changelogs/unreleased/178-opdude: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/changelogs/unreleased/178-opdude -------------------------------------------------------------------------------- /changelogs/unreleased/239-prasadjoshi12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/changelogs/unreleased/239-prasadjoshi12 -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/backup_at_b_restore_at_a.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/examples/backup_at_b_restore_at_a.md -------------------------------------------------------------------------------- /examples/velero_at_a_br_at_other.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/examples/velero_at_a_br_at_other.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/go.sum -------------------------------------------------------------------------------- /hack/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/hack/build.sh -------------------------------------------------------------------------------- /hack/ci/build_util.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/hack/ci/build_util.sh -------------------------------------------------------------------------------- /hack/cp-plugin/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/hack/cp-plugin/main.go -------------------------------------------------------------------------------- /hack/docker-push.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/hack/docker-push.sh -------------------------------------------------------------------------------- /hack/release-tools/changelog.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/hack/release-tools/changelog.sh -------------------------------------------------------------------------------- /tilt-provider.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/tilt-provider.json -------------------------------------------------------------------------------- /velero-plugin-for-gcp/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/velero-plugin-for-gcp/main.go -------------------------------------------------------------------------------- /velero-plugin-for-gcp/object_store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/velero-plugin-for-gcp/object_store.go -------------------------------------------------------------------------------- /velero-plugin-for-gcp/object_store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/velero-plugin-for-gcp/object_store_test.go -------------------------------------------------------------------------------- /velero-plugin-for-gcp/volume_snapshotter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/velero-plugin-for-gcp/volume_snapshotter.go -------------------------------------------------------------------------------- /velero-plugin-for-gcp/volume_snapshotter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/velero-plugin-for-gcp/volume_snapshotter_test.go -------------------------------------------------------------------------------- /volumesnapshotlocation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vmware-tanzu/velero-plugin-for-gcp/HEAD/volumesnapshotlocation.md --------------------------------------------------------------------------------