This repository has been archived by the owner on Mar 1, 2024. It is now read-only.
forked from prometheus-operator/prometheus-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
51 lines (48 loc) · 2 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
module github.com/prometheus-operator/prometheus-operator
go 1.15
require (
github.com/blang/semver/v4 v4.0.0
github.com/brancz/kube-rbac-proxy v0.8.0
github.com/docker/distribution v2.7.1+incompatible
github.com/evanphx/json-patch/v5 v5.1.0
github.com/ghodss/yaml v1.0.0
github.com/go-kit/kit v0.10.0
github.com/go-openapi/swag v0.19.12
github.com/gogo/protobuf v1.3.2
github.com/golang/protobuf v1.4.3
github.com/google/go-cmp v0.5.4
github.com/hashicorp/go-version v1.2.1
github.com/kylelemons/godebug v1.1.0
github.com/mitchellh/hashstructure v1.0.1-0.20200508175121-8fdbea448aa6
github.com/oklog/run v1.1.0
github.com/pkg/errors v0.9.1
github.com/prometheus-community/prom-label-proxy v0.2.0
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.45.0
github.com/prometheus-operator/prometheus-operator/pkg/client v0.45.0
github.com/prometheus/alertmanager v0.21.1-0.20200911160112-1fdff6b3f939
github.com/prometheus/client_golang v1.9.0
github.com/prometheus/common v0.15.0
github.com/prometheus/prometheus v1.8.2-0.20210106134434-02e92236a8ba
github.com/stretchr/testify v1.6.1
github.com/thanos-io/thanos v0.17.2
golang.org/x/sync v0.0.0-20201207232520-09787c993a3a
gopkg.in/alecthomas/kingpin.v2 v2.2.6
gopkg.in/yaml.v2 v2.4.0
k8s.io/api v0.20.1
k8s.io/apiextensions-apiserver v0.20.1
k8s.io/apimachinery v0.20.1
k8s.io/client-go v12.0.0+incompatible
k8s.io/component-base v0.20.1
k8s.io/klog v1.0.0
k8s.io/klog/v2 v2.4.0
k8s.io/utils v0.0.0-20201110183641-67b214c5f920
)
replace (
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring => ./pkg/apis/monitoring
github.com/prometheus-operator/prometheus-operator/pkg/client => ./pkg/client
// A replace directive is needed for k8s.io/client-go because Cortex (which
// is an indirect dependency through Thanos) has a requirement on v12.0.0.
k8s.io/client-go => k8s.io/client-go v0.20.1
k8s.io/klog => github.com/simonpasquier/klog-gokit v0.3.0
k8s.io/klog/v2 => github.com/simonpasquier/klog-gokit/v2 v2.0.1
)