├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature-request.md ├── pull_request_template.md └── workflows │ ├── build.yml │ ├── fossa.yml │ ├── pull_request.yml │ └── release.yml ├── .gitignore ├── .golangci.yml ├── .muse └── config.toml ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── GOVERNANCE.md ├── LICENSE ├── MAINTAINERS.md ├── Makefile ├── Makefile.buildx.mk ├── README.md ├── RELEASE.md ├── changelogs └── released │ ├── v1.10.0-RC1 │ ├── 72-mynktl │ ├── 76-mynktl │ └── 79-mynktl │ ├── v1.10.0-RC2 │ └── 85-mynktl │ ├── v1.11.0-RC2 │ └── 93-sonasingh46 │ ├── v2.1.0 │ ├── 102-pawanpraka1 │ ├── 108-mittachaitu │ ├── 110-pawanpraka1 │ └── 111-pawanpraka1 │ ├── v2.2.0-RC1 │ ├── 115-mynktl │ ├── 116-pawanpraka1 │ ├── 117-pawanpraka1 │ ├── 118-pawanpraka1 │ └── 121-pawanpraka1 │ ├── v2.2.0-RC2 │ ├── 124-pawanpraka1 │ └── 128-pawanpraka1 │ ├── v2.3.0-RC1 │ ├── 132-shubham14bajpai │ ├── 133-prateek │ └── 99-mynktl │ ├── v2.4.0-RC1 │ ├── 131-zlymeda │ ├── 139-pawanpraka1 │ └── 140-mynktl │ ├── v2.5.0-RC1 │ └── 144-mynktl │ ├── v2.7.0-RC1 │ ├── 147-pawanpraka1 │ └── 149-shubham14bajpai │ └── v2.9.0-RC1 │ ├── 154-mynktl │ └── 161-prateekpandey14 ├── code-standard.md ├── developer-setup.md ├── example ├── 05-backupstoragelocation.yaml ├── 06-local-volumesnapshotlocation.yaml ├── 06-volumesnapshotlocation.yaml └── 10-deployment.yaml ├── go.mod ├── go.sum ├── pkg ├── clouduploader │ ├── conn.go │ ├── operation.go │ ├── server.go │ └── server_utils.go ├── cstor │ ├── api_service.go │ ├── cstor.go │ ├── cvr_operation.go │ ├── pv_operation.go │ ├── pvc_operation.go │ └── status.go ├── snapshot │ └── snap.go ├── velero │ ├── restore.go │ ├── sort.go │ └── velero.go └── zfs │ ├── plugin │ ├── backup.go │ ├── restore.go │ └── zfs.go │ ├── snapshot │ └── snap.go │ └── utils │ └── utils.go ├── plugin.Dockerfile ├── script ├── buildxpush.sh ├── install-openebs.sh ├── install-velero.sh ├── minio-credentials ├── minio.yaml └── volumesnapshotlocation.yaml ├── tests ├── README.md ├── app │ ├── application_setup.go │ └── application_yaml.go ├── config │ └── config.go ├── k8s │ ├── exec.go │ ├── log.go │ ├── status.go │ └── storage_install.go ├── openebs │ ├── logs.go │ ├── storage_install.go │ ├── storage_status.go │ └── storage_yaml.go ├── sanity │ └── backup_test.go └── velero │ ├── backup.go │ ├── logs.go │ ├── restore.go │ ├── schedule.go │ └── status.go └── velero-blockstore-openebs └── main.go /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/fossa.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/.github/workflows/fossa.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/.github/workflows/pull_request.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/.golangci.yml -------------------------------------------------------------------------------- /.muse/config.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/.muse/config.toml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/Dockerfile -------------------------------------------------------------------------------- /GOVERNANCE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/GOVERNANCE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/Makefile -------------------------------------------------------------------------------- /Makefile.buildx.mk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/Makefile.buildx.mk -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/RELEASE.md -------------------------------------------------------------------------------- /changelogs/released/v1.10.0-RC1/72-mynktl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/changelogs/released/v1.10.0-RC1/72-mynktl -------------------------------------------------------------------------------- /changelogs/released/v1.10.0-RC1/76-mynktl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/changelogs/released/v1.10.0-RC1/76-mynktl -------------------------------------------------------------------------------- /changelogs/released/v1.10.0-RC1/79-mynktl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/changelogs/released/v1.10.0-RC1/79-mynktl -------------------------------------------------------------------------------- /changelogs/released/v1.10.0-RC2/85-mynktl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/changelogs/released/v1.10.0-RC2/85-mynktl -------------------------------------------------------------------------------- /changelogs/released/v1.11.0-RC2/93-sonasingh46: -------------------------------------------------------------------------------- 1 | add restore support for cStor CSI based volumes 2 | -------------------------------------------------------------------------------- /changelogs/released/v2.1.0/102-pawanpraka1: -------------------------------------------------------------------------------- 1 | adding velero plugin for ZFS-LocalPV 2 | -------------------------------------------------------------------------------- /changelogs/released/v2.1.0/108-mittachaitu: -------------------------------------------------------------------------------- 1 | Add support for local restore of cStor CSI volume 2 | -------------------------------------------------------------------------------- /changelogs/released/v2.1.0/110-pawanpraka1: -------------------------------------------------------------------------------- 1 | making directory and binary name openebs specific 2 | -------------------------------------------------------------------------------- /changelogs/released/v2.1.0/111-pawanpraka1: -------------------------------------------------------------------------------- 1 | adding support for parallel backup and restore 2 | -------------------------------------------------------------------------------- /changelogs/released/v2.2.0-RC1/115-mynktl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/changelogs/released/v2.2.0-RC1/115-mynktl -------------------------------------------------------------------------------- /changelogs/released/v2.2.0-RC1/116-pawanpraka1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/changelogs/released/v2.2.0-RC1/116-pawanpraka1 -------------------------------------------------------------------------------- /changelogs/released/v2.2.0-RC1/117-pawanpraka1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/changelogs/released/v2.2.0-RC1/117-pawanpraka1 -------------------------------------------------------------------------------- /changelogs/released/v2.2.0-RC1/118-pawanpraka1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/changelogs/released/v2.2.0-RC1/118-pawanpraka1 -------------------------------------------------------------------------------- /changelogs/released/v2.2.0-RC1/121-pawanpraka1: -------------------------------------------------------------------------------- 1 | adding support to do incremental backup/restore for ZFS-LocalPV 2 | -------------------------------------------------------------------------------- /changelogs/released/v2.2.0-RC2/124-pawanpraka1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/changelogs/released/v2.2.0-RC2/124-pawanpraka1 -------------------------------------------------------------------------------- /changelogs/released/v2.2.0-RC2/128-pawanpraka1: -------------------------------------------------------------------------------- 1 | fixing the backup deletion for ZFS-LocalPV 2 | -------------------------------------------------------------------------------- /changelogs/released/v2.3.0-RC1/132-shubham14bajpai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/changelogs/released/v2.3.0-RC1/132-shubham14bajpai -------------------------------------------------------------------------------- /changelogs/released/v2.3.0-RC1/133-prateek: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/changelogs/released/v2.3.0-RC1/133-prateek -------------------------------------------------------------------------------- /changelogs/released/v2.3.0-RC1/99-mynktl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/changelogs/released/v2.3.0-RC1/99-mynktl -------------------------------------------------------------------------------- /changelogs/released/v2.4.0-RC1/131-zlymeda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/changelogs/released/v2.4.0-RC1/131-zlymeda -------------------------------------------------------------------------------- /changelogs/released/v2.4.0-RC1/139-pawanpraka1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/changelogs/released/v2.4.0-RC1/139-pawanpraka1 -------------------------------------------------------------------------------- /changelogs/released/v2.4.0-RC1/140-mynktl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/changelogs/released/v2.4.0-RC1/140-mynktl -------------------------------------------------------------------------------- /changelogs/released/v2.5.0-RC1/144-mynktl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/changelogs/released/v2.5.0-RC1/144-mynktl -------------------------------------------------------------------------------- /changelogs/released/v2.7.0-RC1/147-pawanpraka1: -------------------------------------------------------------------------------- 1 | adding support to restore in an encrypted pool for ZFS-LocalPV 2 | -------------------------------------------------------------------------------- /changelogs/released/v2.7.0-RC1/149-shubham14bajpai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/changelogs/released/v2.7.0-RC1/149-shubham14bajpai -------------------------------------------------------------------------------- /changelogs/released/v2.9.0-RC1/154-mynktl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/changelogs/released/v2.9.0-RC1/154-mynktl -------------------------------------------------------------------------------- /changelogs/released/v2.9.0-RC1/161-prateekpandey14: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/changelogs/released/v2.9.0-RC1/161-prateekpandey14 -------------------------------------------------------------------------------- /code-standard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/code-standard.md -------------------------------------------------------------------------------- /developer-setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/developer-setup.md -------------------------------------------------------------------------------- /example/05-backupstoragelocation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/example/05-backupstoragelocation.yaml -------------------------------------------------------------------------------- /example/06-local-volumesnapshotlocation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/example/06-local-volumesnapshotlocation.yaml -------------------------------------------------------------------------------- /example/06-volumesnapshotlocation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/example/06-volumesnapshotlocation.yaml -------------------------------------------------------------------------------- /example/10-deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/example/10-deployment.yaml -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/go.sum -------------------------------------------------------------------------------- /pkg/clouduploader/conn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/pkg/clouduploader/conn.go -------------------------------------------------------------------------------- /pkg/clouduploader/operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/pkg/clouduploader/operation.go -------------------------------------------------------------------------------- /pkg/clouduploader/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/pkg/clouduploader/server.go -------------------------------------------------------------------------------- /pkg/clouduploader/server_utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/pkg/clouduploader/server_utils.go -------------------------------------------------------------------------------- /pkg/cstor/api_service.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/pkg/cstor/api_service.go -------------------------------------------------------------------------------- /pkg/cstor/cstor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/pkg/cstor/cstor.go -------------------------------------------------------------------------------- /pkg/cstor/cvr_operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/pkg/cstor/cvr_operation.go -------------------------------------------------------------------------------- /pkg/cstor/pv_operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/pkg/cstor/pv_operation.go -------------------------------------------------------------------------------- /pkg/cstor/pvc_operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/pkg/cstor/pvc_operation.go -------------------------------------------------------------------------------- /pkg/cstor/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/pkg/cstor/status.go -------------------------------------------------------------------------------- /pkg/snapshot/snap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/pkg/snapshot/snap.go -------------------------------------------------------------------------------- /pkg/velero/restore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/pkg/velero/restore.go -------------------------------------------------------------------------------- /pkg/velero/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/pkg/velero/sort.go -------------------------------------------------------------------------------- /pkg/velero/velero.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/pkg/velero/velero.go -------------------------------------------------------------------------------- /pkg/zfs/plugin/backup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/pkg/zfs/plugin/backup.go -------------------------------------------------------------------------------- /pkg/zfs/plugin/restore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/pkg/zfs/plugin/restore.go -------------------------------------------------------------------------------- /pkg/zfs/plugin/zfs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/pkg/zfs/plugin/zfs.go -------------------------------------------------------------------------------- /pkg/zfs/snapshot/snap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/pkg/zfs/snapshot/snap.go -------------------------------------------------------------------------------- /pkg/zfs/utils/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/pkg/zfs/utils/utils.go -------------------------------------------------------------------------------- /plugin.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/plugin.Dockerfile -------------------------------------------------------------------------------- /script/buildxpush.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/script/buildxpush.sh -------------------------------------------------------------------------------- /script/install-openebs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/script/install-openebs.sh -------------------------------------------------------------------------------- /script/install-velero.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/script/install-velero.sh -------------------------------------------------------------------------------- /script/minio-credentials: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/script/minio-credentials -------------------------------------------------------------------------------- /script/minio.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/script/minio.yaml -------------------------------------------------------------------------------- /script/volumesnapshotlocation.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/script/volumesnapshotlocation.yaml -------------------------------------------------------------------------------- /tests/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/tests/README.md -------------------------------------------------------------------------------- /tests/app/application_setup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/tests/app/application_setup.go -------------------------------------------------------------------------------- /tests/app/application_yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/tests/app/application_yaml.go -------------------------------------------------------------------------------- /tests/config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/tests/config/config.go -------------------------------------------------------------------------------- /tests/k8s/exec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/tests/k8s/exec.go -------------------------------------------------------------------------------- /tests/k8s/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/tests/k8s/log.go -------------------------------------------------------------------------------- /tests/k8s/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/tests/k8s/status.go -------------------------------------------------------------------------------- /tests/k8s/storage_install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/tests/k8s/storage_install.go -------------------------------------------------------------------------------- /tests/openebs/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/tests/openebs/logs.go -------------------------------------------------------------------------------- /tests/openebs/storage_install.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/tests/openebs/storage_install.go -------------------------------------------------------------------------------- /tests/openebs/storage_status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/tests/openebs/storage_status.go -------------------------------------------------------------------------------- /tests/openebs/storage_yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/tests/openebs/storage_yaml.go -------------------------------------------------------------------------------- /tests/sanity/backup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/tests/sanity/backup_test.go -------------------------------------------------------------------------------- /tests/velero/backup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/tests/velero/backup.go -------------------------------------------------------------------------------- /tests/velero/logs.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/tests/velero/logs.go -------------------------------------------------------------------------------- /tests/velero/restore.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/tests/velero/restore.go -------------------------------------------------------------------------------- /tests/velero/schedule.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/tests/velero/schedule.go -------------------------------------------------------------------------------- /tests/velero/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/tests/velero/status.go -------------------------------------------------------------------------------- /velero-blockstore-openebs/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/openebs/velero-plugin/HEAD/velero-blockstore-openebs/main.go --------------------------------------------------------------------------------