forked from openshift/cluster-monitoring-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
36 lines (33 loc) · 1.49 KB
/
go.mod
File metadata and controls
36 lines (33 loc) · 1.49 KB
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
module github.com/openshift/cluster-monitoring-operator
go 1.13
require (
github.com/Jeffail/gabs v1.1.1
github.com/coreos/prometheus-operator v0.35.1
github.com/gogo/protobuf v1.2.2-0.20190730201129-28a6bbf47e48
github.com/imdario/mergo v0.3.6 // indirect
github.com/kylelemons/godebug v1.1.0 // indirect
github.com/mitchellh/hashstructure v1.0.0 // indirect
github.com/openshift/api v0.0.0-20200116145750-0e2ff1e215dd
github.com/openshift/client-go v0.0.0-20200116152001-92a2713fa240
github.com/openshift/library-go v0.0.0-20200120084036-bb27e57e2f2b
github.com/pkg/errors v0.8.1
github.com/prometheus/client_golang v1.1.0
github.com/prometheus/prometheus v2.9.2+incompatible
golang.org/x/sync v0.0.0-20190423024810-112230192c58
k8s.io/api v0.17.1
k8s.io/apiextensions-apiserver v0.17.1
k8s.io/apimachinery v0.17.1
k8s.io/apiserver v0.17.1
k8s.io/client-go v12.0.0+incompatible
k8s.io/klog v1.0.0
k8s.io/kube-aggregator v0.17.1
k8s.io/metrics v0.0.0-20191014074242-8b0351268f72
)
replace (
github.com/prometheus/prometheus => github.com/prometheus/prometheus v1.8.2-0.20190819201610-48b2c9c8eae2 // v1.8.2 is misleading as Prometheus does not have v2 module. This is pointing to one commit after 2.12.0.
k8s.io/api => k8s.io/api v0.17.1
k8s.io/apimachinery => k8s.io/apimachinery v0.17.1
k8s.io/client-go => k8s.io/client-go v0.17.1
k8s.io/code-generator => k8s.io/code-generator v0.0.0-20190912054826-cd179ad6a269
k8s.io/kube-openapi => k8s.io/kube-openapi v0.0.0-20190228160746-b3a7cee44a30
)