mirror of
https://github.com/vmware-tanzu/velero.git
synced 2026-01-04 12:14:00 +00:00
Test case description is "Deleted backups are deleted from object storage and backups deleted from object storage can be deleted locally", in this test, only resource backup objects are target for verifition, restic repo verification is not included in this PR, and snapshot verification will be in later PR Signed-off-by: danfengl <danfengl@vmware.com>
127 lines
5.5 KiB
Modula-2
127 lines
5.5 KiB
Modula-2
module github.com/vmware-tanzu/velero
|
|
|
|
go 1.17
|
|
|
|
require (
|
|
cloud.google.com/go/storage v1.10.0
|
|
github.com/Azure/azure-pipeline-go v0.2.3
|
|
github.com/Azure/azure-sdk-for-go v42.0.0+incompatible
|
|
github.com/Azure/azure-storage-blob-go v0.14.0
|
|
github.com/Azure/go-autorest/autorest v0.11.21
|
|
github.com/Azure/go-autorest/autorest/azure/auth v0.5.8
|
|
github.com/Azure/go-autorest/autorest/to v0.3.0
|
|
github.com/aws/aws-sdk-go v1.28.2
|
|
github.com/bombsimon/logrusr v1.1.0
|
|
github.com/evanphx/json-patch v4.11.0+incompatible
|
|
github.com/fatih/color v1.13.0
|
|
github.com/gobwas/glob v0.2.3
|
|
github.com/gofrs/uuid v3.2.0+incompatible
|
|
github.com/golang/protobuf v1.5.2
|
|
github.com/google/uuid v1.2.0
|
|
github.com/hashicorp/go-hclog v0.12.0
|
|
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.16.5
|
|
github.com/onsi/gomega v1.16.0
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/prometheus/client_golang v1.11.0
|
|
github.com/robfig/cron v1.1.0
|
|
github.com/sirupsen/logrus v1.8.1
|
|
github.com/spf13/afero v1.6.0
|
|
github.com/spf13/cobra v1.2.1
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/stretchr/testify v1.7.0
|
|
github.com/vmware-tanzu/crash-diagnostics v0.3.7
|
|
golang.org/x/mod v0.4.2
|
|
golang.org/x/net v0.0.0-20210520170846-37e1c6afe023
|
|
google.golang.org/api v0.56.0
|
|
google.golang.org/grpc v1.40.0
|
|
k8s.io/api v0.22.2
|
|
k8s.io/apiextensions-apiserver v0.22.2
|
|
k8s.io/apimachinery v0.22.2
|
|
k8s.io/cli-runtime v0.22.2
|
|
k8s.io/client-go v0.22.2
|
|
k8s.io/klog v1.0.0
|
|
k8s.io/kube-aggregator v0.19.12
|
|
sigs.k8s.io/cluster-api v1.0.0
|
|
sigs.k8s.io/controller-runtime v0.10.2
|
|
)
|
|
|
|
require (
|
|
cloud.google.com/go v0.93.3 // indirect
|
|
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
|
|
github.com/Azure/go-autorest/autorest/adal v0.9.14 // indirect
|
|
github.com/Azure/go-autorest/autorest/azure/cli v0.4.2 // indirect
|
|
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
|
|
github.com/Azure/go-autorest/autorest/validation v0.2.0 // indirect
|
|
github.com/Azure/go-autorest/logger v0.2.1 // indirect
|
|
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
github.com/blang/semver v3.5.1+incompatible // indirect
|
|
github.com/cespare/xxhash/v2 v2.1.1 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/dimchansky/utfbom v1.1.1 // indirect
|
|
github.com/form3tech-oss/jwt-go v3.2.3+incompatible // indirect
|
|
github.com/fsnotify/fsnotify v1.5.1 // indirect
|
|
github.com/go-logr/logr v0.4.0 // indirect
|
|
github.com/go-logr/zapr v0.4.0 // indirect
|
|
github.com/gobuffalo/flect v0.2.3 // indirect
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
|
|
github.com/google/go-cmp v0.5.6 // indirect
|
|
github.com/google/gofuzz v1.2.0 // indirect
|
|
github.com/googleapis/gax-go/v2 v2.1.0 // indirect
|
|
github.com/googleapis/gnostic v0.5.5 // indirect
|
|
github.com/hashicorp/yamux v0.0.0-20180604194846-3520598351bb // indirect
|
|
github.com/imdario/mergo v0.3.12 // indirect
|
|
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
|
github.com/jmespath/go-jmespath v0.0.0-20180206201540-c2b33e8439af // indirect
|
|
github.com/json-iterator/go v1.1.11 // indirect
|
|
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect
|
|
github.com/mattn/go-colorable v0.1.9 // indirect
|
|
github.com/mattn/go-ieproxy v0.0.1 // indirect
|
|
github.com/mattn/go-isatty v0.0.14 // indirect
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
|
|
github.com/mitchellh/go-homedir v1.1.0 // indirect
|
|
github.com/mitchellh/go-testing-interface v1.0.0 // indirect
|
|
github.com/moby/spdystream v0.2.0 // indirect
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
github.com/modern-go/reflect2 v1.0.1 // indirect
|
|
github.com/nxadm/tail v1.4.8 // indirect
|
|
github.com/oklog/run v1.0.0 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/prometheus/client_model v0.2.0 // indirect
|
|
github.com/prometheus/common v0.26.0 // indirect
|
|
github.com/prometheus/procfs v0.6.0 // indirect
|
|
github.com/stretchr/objx v0.2.0 // indirect
|
|
github.com/vladimirvivien/gexe v0.1.1 // indirect
|
|
go.opencensus.io v0.23.0 // indirect
|
|
go.starlark.net v0.0.0-20201006213952-227f4aabceb5 // indirect
|
|
go.uber.org/atomic v1.7.0 // indirect
|
|
go.uber.org/multierr v1.6.0 // indirect
|
|
go.uber.org/zap v1.19.0 // indirect
|
|
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5 // indirect
|
|
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f // indirect
|
|
golang.org/x/sys v0.0.0-20211019181941-9d821ace8654 // indirect
|
|
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect
|
|
golang.org/x/text v0.3.7 // indirect
|
|
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect
|
|
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
|
|
google.golang.org/appengine v1.6.7 // indirect
|
|
google.golang.org/genproto v0.0.0-20210828152312-66f60bf46e71 // indirect
|
|
google.golang.org/protobuf v1.27.1 // indirect
|
|
gopkg.in/inf.v0 v0.9.1 // indirect
|
|
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
|
|
k8s.io/component-base v0.22.2 // indirect
|
|
k8s.io/klog/v2 v2.9.0 // indirect
|
|
k8s.io/kube-openapi v0.0.0-20210421082810-95288971da7e // indirect
|
|
k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b // indirect
|
|
sigs.k8s.io/structured-merge-diff/v4 v4.1.2 // indirect
|
|
sigs.k8s.io/yaml v1.3.0 // indirect
|
|
)
|
|
|
|
replace github.com/gogo/protobuf => github.com/gogo/protobuf v1.3.2
|