forked from kubevirt/containerized-data-importer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
73 lines (67 loc) · 3.64 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
module kubevirt.io/containerized-data-importer
require (
github.com/RHsyseng/operator-utils v0.0.0-20190906175225-942a3f9c85a9
github.com/appscode/jsonpatch v0.0.0-20190108182946-7c0e3b262f30
github.com/blang/semver v3.5.1+incompatible
github.com/docker/spdystream v0.0.0-20181023171402-6480d4af844c // indirect
github.com/elazarl/goproxy v0.0.0-20190911111923-ecfe977594f1 // indirect
github.com/emicklei/go-restful v2.9.6+incompatible
github.com/emicklei/go-restful-openapi v1.2.0
github.com/evanphx/json-patch v4.2.0+incompatible
github.com/ghodss/yaml v1.0.0
github.com/go-ini/ini v1.48.0 // indirect
github.com/go-logr/logr v0.0.0-20190813230443-d63354a31b29
github.com/go-logr/zapr v0.0.0-20190813212058-2e515ec1daf7 // indirect
github.com/go-openapi/spec v0.19.2
github.com/go-openapi/validate v0.18.0 // indirect
github.com/gogo/protobuf v1.2.1 // indirect
github.com/golang/groupcache v0.0.0-20190129154638-5b532d6fd5ef // indirect
github.com/golang/protobuf v1.3.1 // indirect
github.com/gopherjs/gopherjs v0.0.0-20190915194858-d3ddacdb130f // indirect
github.com/hashicorp/golang-lru v0.5.1 // indirect
github.com/kelseyhightower/envconfig v1.4.0
github.com/kubernetes-csi/external-snapshotter v0.0.0-20190509204040-e49856eb417c
github.com/minio/minio-go v6.0.14+incompatible
github.com/mitchellh/go-homedir v1.1.0 // indirect
github.com/onsi/ginkgo v1.8.0
github.com/onsi/gomega v1.5.1-0.20190515112211-6a48b4839f85
github.com/openshift/api v3.9.1-0.20190424152011-77b8897ec79a+incompatible
github.com/openshift/client-go v0.0.0-20190401163519-84c2b942258a
github.com/openshift/custom-resource-status v0.0.0-20190822192428-e62f2f3b79f3
github.com/operator-framework/operator-lifecycle-manager v0.0.0-20190626212234-73c00f855607
github.com/operator-framework/operator-marketplace v0.0.0-20190617165322-1cbd32624349
github.com/pkg/errors v0.8.1
github.com/prometheus/client_golang v0.9.3-0.20190127221311-3c4408c8b829
github.com/prometheus/client_model v0.0.0-20190115171406-56726106282f
github.com/prometheus/common v0.4.0 // indirect
github.com/smartystreets/assertions v1.0.1 // indirect
github.com/smartystreets/goconvey v0.0.0-20190731233626-505e41936337 // indirect
github.com/stretchr/testify v1.4.0
github.com/ulikunitz/xz v0.5.6
go.uber.org/multierr v1.3.0 // indirect
golang.org/x/crypto v0.0.0-20191002192127-34f69633bfdc // indirect
golang.org/x/net v0.0.0-20191007182048-72f939374954 // indirect
golang.org/x/oauth2 v0.0.0-20190402181905-9f3314589c9a // indirect
golang.org/x/sys v0.0.0-20191008105621-543471e840be
google.golang.org/genproto v0.0.0-20181016170114-94acd270e44e // indirect
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15 // indirect
gopkg.in/ini.v1 v1.48.0 // indirect
gopkg.in/square/go-jose.v2 v2.3.1
gopkg.in/yaml.v2 v2.2.4
k8s.io/api v0.0.0-20190725062911-6607c48751ae
k8s.io/apiextensions-apiserver v0.0.0-20190315093550-53c4693659ed
k8s.io/apimachinery v0.0.0-20190719140911-bfcf53abc9f8
k8s.io/client-go v11.0.0+incompatible
k8s.io/cluster-bootstrap v0.0.0-20190228181738-e96ff33745e4
k8s.io/klog v0.3.1
k8s.io/kube-aggregator v0.0.0-20190404125450-f5e124c822d6
k8s.io/kube-openapi v0.0.0-20190709113604-33be087ad058
kubevirt.io/qe-tools v0.1.3
sigs.k8s.io/controller-runtime v0.1.10
sigs.k8s.io/testing_frameworks v0.0.0-20190821092519-b6c33f574b58 // indirect
)
replace k8s.io/client-go => k8s.io/client-go v0.0.0-20190228174230-b40b2a5939e4
replace k8s.io/api => k8s.io/api v0.0.0-20190222213804-5cb15d344471
replace k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.0.0-20190228180357-d002e88f6236
replace k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20190221213512-86fb29eff628
go 1.13