Skip to content

Commit 5dee02e

Browse files
1gtmtamalsaha
andauthored
[cherry-pick] Use github.com/prometheus/client_golang@v1.7.1 (#228) (#234)
/cherry-pick Signed-off-by: Tamal Saha <tamal@appscode.com> Co-authored-by: Tamal Saha <tamal@appscode.com>
1 parent 067642a commit 5dee02e

File tree

126 files changed

+6457
-1272
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

126 files changed

+6457
-1272
lines changed

go.mod

Lines changed: 67 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -15,35 +15,76 @@ require (
1515
k8s.io/apimachinery v0.18.3
1616
k8s.io/client-go v12.0.0+incompatible
1717
k8s.io/kube-openapi v0.0.0-20200410145947-61e04a5be9a6
18-
kmodules.xyz/client-go v0.0.0-20200818171030-24b2ce405feb
18+
kmodules.xyz/client-go v0.0.0-20200905112811-2e29b973ee0c
1919
kmodules.xyz/crd-schema-fuzz v0.0.0-20200521005638-2433a187de95
2020
kmodules.xyz/custom-resources v0.0.0-20200604135349-9e9f5c4fdba9
2121
kmodules.xyz/offshoot-api v0.0.0-20200521035628-e135bf07b226
2222
sigs.k8s.io/yaml v1.2.0
23-
stash.appscode.dev/apimachinery v0.10.0
23+
stash.appscode.dev/apimachinery v0.10.1-0.20200914045248-546ceea96940
2424
)
2525

26-
replace (
27-
bitbucket.org/ww/goautoneg => gomodules.xyz/goautoneg v0.0.0-20120707110453-a547fc61f48d
28-
git.apache.org/thrift.git => github.com/apache/thrift v0.13.0
29-
github.com/Azure/azure-sdk-for-go => github.com/Azure/azure-sdk-for-go v35.0.0+incompatible
30-
github.com/Azure/go-ansiterm => github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78
31-
github.com/Azure/go-autorest => github.com/Azure/go-autorest v13.0.0+incompatible
32-
github.com/Azure/go-autorest/autorest => github.com/Azure/go-autorest/autorest v0.9.0
33-
github.com/Azure/go-autorest/autorest/adal => github.com/Azure/go-autorest/autorest/adal v0.5.0
34-
github.com/Azure/go-autorest/autorest/azure/auth => github.com/Azure/go-autorest/autorest/azure/auth v0.2.0
35-
github.com/Azure/go-autorest/autorest/date => github.com/Azure/go-autorest/autorest/date v0.1.0
36-
github.com/Azure/go-autorest/autorest/mocks => github.com/Azure/go-autorest/autorest/mocks v0.2.0
37-
github.com/Azure/go-autorest/autorest/to => github.com/Azure/go-autorest/autorest/to v0.2.0
38-
github.com/Azure/go-autorest/autorest/validation => github.com/Azure/go-autorest/autorest/validation v0.1.0
39-
github.com/Azure/go-autorest/logger => github.com/Azure/go-autorest/logger v0.1.0
40-
github.com/Azure/go-autorest/tracing => github.com/Azure/go-autorest/tracing v0.5.0
41-
github.com/prometheus/client_golang => github.com/prometheus/client_golang v1.0.0
42-
go.etcd.io/etcd => go.etcd.io/etcd v0.0.0-20191023171146-3cf2f69b5738
43-
google.golang.org/grpc => google.golang.org/grpc v1.26.0
44-
k8s.io/api => github.com/kmodules/api v0.18.4-0.20200524125823-c8bc107809b9
45-
k8s.io/apimachinery => github.com/kmodules/apimachinery v0.19.0-alpha.0.0.20200520235721-10b58e57a423
46-
k8s.io/apiserver => github.com/kmodules/apiserver v0.18.4-0.20200521000930-14c5f6df9625
47-
k8s.io/client-go => k8s.io/client-go v0.18.3
48-
k8s.io/kubernetes => github.com/kmodules/kubernetes v1.19.0-alpha.0.0.20200521033432-49d3646051ad
49-
)
26+
replace bitbucket.org/ww/goautoneg => gomodules.xyz/goautoneg v0.0.0-20120707110453-a547fc61f48d
27+
28+
replace cloud.google.com/go => cloud.google.com/go v0.49.0
29+
30+
replace git.apache.org/thrift.git => github.com/apache/thrift v0.13.0
31+
32+
replace github.com/Azure/azure-sdk-for-go => github.com/Azure/azure-sdk-for-go v35.0.0+incompatible
33+
34+
replace github.com/Azure/go-ansiterm => github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78
35+
36+
replace github.com/Azure/go-autorest => github.com/Azure/go-autorest v13.0.0+incompatible
37+
38+
replace github.com/Azure/go-autorest/autorest => github.com/Azure/go-autorest/autorest v0.9.0
39+
40+
replace github.com/Azure/go-autorest/autorest/adal => github.com/Azure/go-autorest/autorest/adal v0.5.0
41+
42+
replace github.com/Azure/go-autorest/autorest/azure/auth => github.com/Azure/go-autorest/autorest/azure/auth v0.2.0
43+
44+
replace github.com/Azure/go-autorest/autorest/date => github.com/Azure/go-autorest/autorest/date v0.1.0
45+
46+
replace github.com/Azure/go-autorest/autorest/mocks => github.com/Azure/go-autorest/autorest/mocks v0.2.0
47+
48+
replace github.com/Azure/go-autorest/autorest/to => github.com/Azure/go-autorest/autorest/to v0.2.0
49+
50+
replace github.com/Azure/go-autorest/autorest/validation => github.com/Azure/go-autorest/autorest/validation v0.1.0
51+
52+
replace github.com/Azure/go-autorest/logger => github.com/Azure/go-autorest/logger v0.1.0
53+
54+
replace github.com/Azure/go-autorest/tracing => github.com/Azure/go-autorest/tracing v0.5.0
55+
56+
replace github.com/gogo/protobuf => github.com/gogo/protobuf v1.3.1
57+
58+
replace github.com/golang/protobuf => github.com/golang/protobuf v1.3.2
59+
60+
replace github.com/googleapis/gnostic => github.com/googleapis/gnostic v0.3.1
61+
62+
replace github.com/imdario/mergo => github.com/imdario/mergo v0.3.5
63+
64+
replace github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring => github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.0.0-20200911141619-675d303ee0b8
65+
66+
replace github.com/prometheus/client_golang => github.com/prometheus/client_golang v1.7.1
67+
68+
replace go.etcd.io/etcd => go.etcd.io/etcd v0.0.0-20191023171146-3cf2f69b5738
69+
70+
replace google.golang.org/api => google.golang.org/api v0.14.0
71+
72+
replace google.golang.org/genproto => google.golang.org/genproto v0.0.0-20191115194625-c23dd37a84c9
73+
74+
replace google.golang.org/grpc => google.golang.org/grpc v1.26.0
75+
76+
replace k8s.io/api => github.com/kmodules/api v0.18.4-0.20200524125823-c8bc107809b9
77+
78+
replace k8s.io/apimachinery => github.com/kmodules/apimachinery v0.19.0-alpha.0.0.20200520235721-10b58e57a423
79+
80+
replace k8s.io/apiserver => github.com/kmodules/apiserver v0.18.4-0.20200521000930-14c5f6df9625
81+
82+
replace k8s.io/cli-runtime => k8s.io/cli-runtime v0.18.3
83+
84+
replace k8s.io/client-go => k8s.io/client-go v0.18.3
85+
86+
replace k8s.io/component-base => k8s.io/component-base v0.18.3
87+
88+
replace k8s.io/kube-openapi => k8s.io/kube-openapi v0.0.0-20200410145947-61e04a5be9a6 // release-1.18
89+
90+
replace k8s.io/kubernetes => github.com/kmodules/kubernetes v1.19.0-alpha.0.0.20200521033432-49d3646051ad

0 commit comments

Comments
 (0)