forked from openshift/elasticsearch-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
31 lines (28 loc) · 1.08 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
module github.com/openshift/elasticsearch-operator
go 1.14
// Pinned to kubernetes-1.18.3 and openshift release-4.6
require (
github.com/coreos/prometheus-operator v0.38.1-0.20200424145508-7e176fda06cc
github.com/go-logr/logr v0.1.0
github.com/go-logr/zapr v0.1.1
github.com/go-openapi/spec v0.19.4
github.com/google/go-cmp v0.4.0
github.com/inhies/go-bytesize v0.0.0-20151001220322-5990f52c6ad6
github.com/onsi/ginkgo v1.12.0
github.com/onsi/gomega v1.9.0
github.com/openshift/api v0.0.0-20200602204738-768b7001fe69
github.com/operator-framework/operator-sdk v0.18.1
github.com/sergi/go-diff v1.1.0 // indirect
github.com/sirupsen/logrus v1.6.0 // indirect
go.uber.org/zap v1.14.1
gopkg.in/yaml.v2 v2.2.8
k8s.io/api v0.18.8
k8s.io/apimachinery v0.18.8
k8s.io/client-go v12.0.0+incompatible
k8s.io/kube-openapi v0.0.0-20200410145947-61e04a5be9a6
sigs.k8s.io/controller-runtime v0.6.0
)
replace (
github.com/Azure/go-autorest => github.com/Azure/go-autorest v13.3.2+incompatible // Required by OLM
k8s.io/client-go => k8s.io/client-go v0.18.8 // Required by prometheus-operator
)