Skip to content

Commit e931e41

Browse files
1gtmtamalsaha
andauthored
[cherry-pick] Use github.com/prometheus/client_golang@v1.7.1 (#115) (#118)
/cherry-pick Signed-off-by: Tamal Saha <tamal@appscode.com> Co-authored-by: Tamal Saha <tamal@appscode.com>
1 parent 96c677d commit e931e41

File tree

126 files changed

+6457
-1268
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
-1268
lines changed

go.mod

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

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

0 commit comments

Comments
 (0)