forked from longhorn/longhorn-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
77 lines (74 loc) · 3.7 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
module github.com/longhorn/longhorn-manager
go 1.13
replace (
k8s.io/api => k8s.io/api v0.0.0-20191004102349-159aefb8556b
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20191004074956-c5d2f014d689
k8s.io/client-go => k8s.io/client-go v11.0.1-0.20191004102930-01520b8320fc+incompatible
)
require (
github.com/Microsoft/go-winio v0.4.14 // indirect
github.com/c9s/goprocinfo v0.0.0-20190309065803-0b2ad9ac246b // indirect
github.com/container-storage-interface/spec v1.1.0
github.com/coreos/bbolt v1.3.3 // indirect
github.com/coreos/etcd v3.3.17+incompatible // indirect
github.com/coreos/go-semver v0.3.0 // indirect
github.com/coreos/go-systemd v0.0.0-20190719114852-fd7a80b32e1f // indirect
github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f // indirect
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
github.com/docker/distribution v2.7.1+incompatible // indirect
github.com/docker/go-connections v0.2.2-0.20170203235624-7da10c8c50ca
github.com/evanphx/json-patch v4.5.0+incompatible // indirect
github.com/gogo/protobuf v1.3.1 // indirect
github.com/golang/groupcache v0.0.0-20191002201903-404acd9df4cc // indirect
github.com/google/btree v1.0.0 // indirect
github.com/googleapis/gnostic v0.3.1 // indirect
github.com/gorilla/context v1.1.1 // indirect
github.com/gorilla/handlers v1.4.2
github.com/gorilla/mux v1.7.3
github.com/gorilla/websocket v1.4.0
github.com/grpc-ecosystem/go-grpc-middleware v1.1.0 // indirect
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect
github.com/grpc-ecosystem/grpc-gateway v1.11.3 // indirect
github.com/hashicorp/golang-lru v0.5.3 // indirect
github.com/imdario/mergo v0.3.8 // indirect
github.com/jinzhu/copier v0.0.0-20190924061706-b57f9002281a
github.com/jonboulle/clockwork v0.1.0 // indirect
github.com/kubernetes-csi/csi-lib-utils v0.6.1
github.com/longhorn/backupstore v0.0.0-20200611170443-441b1cd8f973
github.com/longhorn/go-iscsi-helper v0.0.0-20200601183015-ca8b762c2f38
github.com/longhorn/longhorn-instance-manager v0.0.0-20200226061011-dd95eaa89a05
github.com/miekg/dns v1.1.22 // indirect
github.com/mitchellh/mapstructure v1.1.2
github.com/opencontainers/go-digest v1.0.0-rc1 // indirect
github.com/pborman/uuid v1.2.0 // indirect
github.com/pkg/errors v0.8.1
github.com/prometheus/client_golang v1.2.1 // indirect
github.com/rancher/go-rancher v0.1.1-0.20190307222549-9756097e5e4c
github.com/robfig/cron v1.2.0
github.com/satori/go.uuid v1.1.1-0.20170321230731-5bf94b69c6b6
github.com/sirupsen/logrus v1.4.2
github.com/soheilhy/cmux v0.1.4 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/stretchr/testify v1.4.0
github.com/tmc/grpc-websocket-proxy v0.0.0-20190109142713-0ad062ec5ee5 // indirect
github.com/urfave/cli v1.22.1
github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect
go.etcd.io/bbolt v1.3.3 // indirect
golang.org/x/net v0.0.0-20190923162816-aa69164e4478
golang.org/x/time v0.0.0-20190921001708-c4c64cad1fd0
google.golang.org/grpc v1.23.0
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/square/go-jose.v2 v2.3.1 // indirect
gopkg.in/yaml.v2 v2.2.4
k8s.io/api v0.0.0-20191016225839-816a9b7df678
k8s.io/apiextensions-apiserver v0.0.0-20191015221719-7d47edc353ef
k8s.io/apimachinery v0.0.0-20191016225534-b1267f8c42b4
k8s.io/apiserver v0.0.0-20191015220424-a5d070e3855f // indirect
k8s.io/client-go v11.0.1-0.20191004102930-01520b8320fc+incompatible
k8s.io/cloud-provider v0.0.0-20191004111010-9775d7be8494 // indirect
k8s.io/kube-openapi v0.0.0-20190918143330-0270cf2f1c1d // indirect
k8s.io/kubernetes v1.14.8
k8s.io/utils v0.0.0-20191010214722-8d271d903fe4
sigs.k8s.io/sig-storage-lib-external-provisioner v4.0.1+incompatible
)