forked from kubevirt/hostpath-provisioner-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
56 lines (51 loc) · 2.71 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
module kubevirt.io/hostpath-provisioner-operator
require (
github.com/appscode/jsonpatch v0.0.0-20190108182946-7c0e3b262f30
github.com/blang/semver v3.5.1+incompatible
github.com/evanphx/json-patch v4.5.0+incompatible
github.com/ghodss/yaml v1.0.0
github.com/go-logr/logr v0.1.0
github.com/go-openapi/spec v0.19.2
github.com/keegancsmith/rpc v1.1.0 // indirect
github.com/mgechev/revive v0.0.0-20191017201419-88015ccf8e97 // 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/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-sdk v0.11.1-0.20191014155558-888dde512025
github.com/rogpeppe/godef v1.1.1 // indirect
github.com/spf13/pflag v1.0.3
github.com/stamblerre/gocode v0.0.0-20190327203809-810592086997 // indirect
golang.org/x/lint v0.0.0-20190930215403-16217165b5de // indirect
golang.org/x/tools v0.0.0-20191018212557-ed542cd5b28a // indirect
k8s.io/api v0.0.0-20190918155943-95b840bb6a1f
k8s.io/apiextensions-apiserver v0.0.0-20190918161926-8f644eb6e783
k8s.io/apimachinery v0.0.0-20190913080033-27d36303b655
k8s.io/client-go v11.0.1-0.20190409021438-1a26190bd76a+incompatible
k8s.io/kube-openapi v0.0.0-20190709113604-33be087ad058
kubevirt.io/client-go v0.22.0
kubevirt.io/containerized-data-importer v1.10.9 // indirect
kubevirt.io/qe-tools v0.1.3 // indirect
sigs.k8s.io/controller-runtime v0.2.0
)
// Pinned to kubernetes-1.14.1
replace (
k8s.io/api => k8s.io/api v0.0.0-20190409021203-6e4e0e4f393b
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.0.0-20190409022649-727a075fdec8
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20190404173353-6a84e37a896d
k8s.io/client-go => k8s.io/client-go v11.0.1-0.20190409021438-1a26190bd76a+incompatible
k8s.io/cloud-provider => k8s.io/cloud-provider v0.0.0-20190409023720-1bc0c81fa51d
)
replace (
// Indirect operator-sdk dependencies use git.apache.org, which is frequently
// down. The github mirror should be used instead.
// Locking to a specific version (from 'go mod graph'):
git.apache.org/thrift.git => github.com/apache/thrift v0.0.0-20180902110319-2566ecd5d999
github.com/coreos/prometheus-operator => github.com/coreos/prometheus-operator v0.31.1
// Pinned to v2.10.0 (kubernetes-1.14.1) so https://proxy.golang.org can
// resolve it correctly.
github.com/prometheus/prometheus => github.com/prometheus/prometheus v1.8.2-0.20190525122359-d20e84d0fb64
)
replace github.com/operator-framework/operator-sdk => github.com/operator-framework/operator-sdk v0.11.0
go 1.13