-
Notifications
You must be signed in to change notification settings - Fork 101
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #176 from kayrus/auth-domain
Fix the OS_USER_DOMAIN_NAME auth issue
- Loading branch information
Showing
601 changed files
with
82,670 additions
and
172,661 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
module github.com/gardener/etcd-backup-restore | ||
|
||
go 1.12 | ||
|
||
require ( | ||
cloud.google.com/go v0.34.0 | ||
github.com/Azure/azure-pipeline-go v0.1.9 | ||
github.com/Azure/azure-storage-blob-go v0.0.0-20181022225951-5152f14ace1c | ||
github.com/aliyun/aliyun-oss-go-sdk v1.9.6 | ||
github.com/aws/aws-sdk-go v1.19.23 | ||
github.com/baiyubin/aliyun-sts-go-sdk v0.0.0-20180326062324-cfa1a18b161f // indirect | ||
github.com/beorn7/perks v1.0.0 // indirect | ||
github.com/coreos/bbolt v1.3.2 | ||
github.com/coreos/etcd v3.3.13+incompatible | ||
github.com/coreos/go-semver v0.3.0 // indirect | ||
github.com/coreos/go-systemd v0.0.0-20190321100706-95778dfbb74e // indirect | ||
github.com/coreos/pkg v0.0.0-20180108230652-97fdf19511ea // indirect | ||
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect | ||
github.com/gogo/protobuf v1.2.1 // indirect | ||
github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6 // indirect | ||
github.com/golang/protobuf v1.3.1 // indirect | ||
github.com/google/btree v1.0.0 // indirect | ||
github.com/googleapis/google-cloud-go-testing v0.0.0-20181205230126-f773598aef76 | ||
github.com/gophercloud/gophercloud v0.0.0-20190212181753-892256c46858 | ||
github.com/gophercloud/utils v0.0.0-20190527093828-25f1b77b8c03 | ||
github.com/gorilla/websocket v1.4.0 // indirect | ||
github.com/grpc-ecosystem/go-grpc-middleware v1.0.0 // indirect | ||
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect | ||
github.com/grpc-ecosystem/grpc-gateway v1.8.5 // indirect | ||
github.com/hashicorp/golang-lru v0.5.1 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/jonboulle/clockwork v0.1.0 // indirect | ||
github.com/json-iterator/go v1.1.6 // indirect | ||
github.com/konsorten/go-windows-terminal-sequences v1.0.2 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect | ||
github.com/onsi/ginkgo v1.8.0 | ||
github.com/onsi/gomega v1.5.0 | ||
github.com/prometheus/client_golang v0.9.2 | ||
github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90 // indirect | ||
github.com/prometheus/common v0.3.0 // indirect | ||
github.com/prometheus/procfs v0.0.0-20190425082905-87a4384529e0 // indirect | ||
github.com/robfig/cron v0.0.0-20171101201047-2315d5715e36 | ||
github.com/satori/go.uuid v1.2.0 // indirect | ||
github.com/sirupsen/logrus v1.4.1 | ||
github.com/soheilhy/cmux v0.1.4 // indirect | ||
github.com/spf13/cobra v0.0.3 | ||
github.com/spf13/pflag v1.0.3 // indirect | ||
github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5 // indirect | ||
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect | ||
go.etcd.io/bbolt v1.3.3 // indirect | ||
go.uber.org/atomic v1.4.0 // indirect | ||
go.uber.org/multierr v1.1.0 // indirect | ||
go.uber.org/zap v1.10.0 // indirect | ||
golang.org/x/crypto v0.0.0-20190426145343-a29dc8fdc734 // indirect | ||
golang.org/x/net v0.0.0-20190502183928-7f726cade0ab // indirect | ||
golang.org/x/oauth2 v0.0.0-20190402181905-9f3314589c9a // indirect | ||
golang.org/x/sys v0.0.0-20190502175342-a43fa875dd82 // indirect | ||
golang.org/x/text v0.3.2 // indirect | ||
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 // indirect | ||
google.golang.org/api v0.4.0 | ||
google.golang.org/appengine v1.5.0 // indirect | ||
google.golang.org/genproto v0.0.0-20190502173448-54afdca5d873 // indirect | ||
google.golang.org/grpc v1.20.1 // indirect | ||
) |
Oops, something went wrong.