mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-01-05 04:55:22 +00:00
This change adds an E2E test which exercises the mulitple credentials feature added in #3489. The test creates a secret from the given credentials and creates a BackupStorageLocation which uses those credentials. A backup and restore is then performed to the default BSL and to the newly created BSL. This change adds new flags to the E2E test suite to configure the BSL created and used in the test. Signed-off-by: Bridget McErlean <bmcerlean@vmware.com>
47 lines
1.7 KiB
Modula-2
47 lines
1.7 KiB
Modula-2
module github.com/vmware-tanzu/velero
|
|
|
|
go 1.15
|
|
|
|
require (
|
|
github.com/Azure/azure-sdk-for-go v42.0.0+incompatible
|
|
github.com/Azure/go-autorest/autorest v0.9.6
|
|
github.com/Azure/go-autorest/autorest/azure/auth v0.4.2
|
|
github.com/Azure/go-autorest/autorest/to v0.3.0
|
|
github.com/Azure/go-autorest/autorest/validation v0.2.0 // indirect
|
|
github.com/aws/aws-sdk-go v1.28.2
|
|
github.com/docker/spdystream v0.0.0-20170912183627-bc6354cbbc29 // indirect
|
|
github.com/evanphx/json-patch v4.9.0+incompatible
|
|
github.com/fatih/color v1.10.0
|
|
github.com/gobwas/glob v0.2.3
|
|
github.com/gofrs/uuid v3.2.0+incompatible
|
|
github.com/golang/protobuf v1.4.2
|
|
github.com/google/uuid v1.1.2
|
|
github.com/hashicorp/go-hclog v0.0.0-20180709165350-ff2cf002a8dd
|
|
github.com/hashicorp/go-plugin v0.0.0-20190610192547-a1bc61569a26
|
|
github.com/joho/godotenv v1.3.0
|
|
github.com/kubernetes-csi/external-snapshotter/client/v4 v4.0.0
|
|
github.com/onsi/ginkgo v1.15.1
|
|
github.com/onsi/gomega v1.10.2
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/prometheus/client_golang v1.7.1
|
|
github.com/robfig/cron v1.1.0
|
|
github.com/sirupsen/logrus v1.6.0
|
|
github.com/spf13/afero v1.2.2
|
|
github.com/spf13/cobra v1.1.1
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/stretchr/testify v1.5.1
|
|
golang.org/x/mod v0.3.0
|
|
golang.org/x/net v0.0.0-20201110031124-69a78807bb2b
|
|
google.golang.org/genproto v0.0.0-20200731012542-8145dea6a485 // indirect
|
|
google.golang.org/grpc v1.31.0
|
|
google.golang.org/protobuf v1.25.0 // indirect
|
|
k8s.io/api v0.19.7
|
|
k8s.io/apiextensions-apiserver v0.19.7
|
|
k8s.io/apimachinery v0.19.7
|
|
k8s.io/cli-runtime v0.19.7
|
|
k8s.io/client-go v0.19.7
|
|
k8s.io/klog v1.0.0
|
|
sigs.k8s.io/cluster-api v0.3.11-0.20210106212952-b6c1b5b3db3d
|
|
sigs.k8s.io/controller-runtime v0.7.1-0.20201215171748-096b2e07c091
|
|
)
|