Skip to content

Commit c24a9bc

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

File tree

157 files changed

+8942
-1519
lines changed

Some content is hidden

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

157 files changed

+8942
-1519
lines changed

go.mod

Lines changed: 72 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -9,43 +9,84 @@ require (
99
github.com/gogo/protobuf v1.3.1
1010
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
1111
github.com/google/gofuzz v1.1.0
12-
github.com/pkg/errors v0.8.1
13-
github.com/spf13/cobra v0.0.5
12+
github.com/pkg/errors v0.9.1
13+
github.com/spf13/cobra v1.0.0
1414
github.com/yudai/gojsondiff v1.0.0
15-
k8s.io/apiextensions-apiserver v0.18.3
16-
k8s.io/apimachinery v0.18.3
15+
k8s.io/apiextensions-apiserver v0.18.5
16+
k8s.io/apimachinery v0.18.5
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
23-
kubedb.dev/apimachinery v0.14.0-alpha.5
23+
kubedb.dev/apimachinery v0.14.0-beta.2
2424
sigs.k8s.io/yaml v1.2.0
25-
stash.appscode.dev/apimachinery v0.10.0
25+
stash.appscode.dev/apimachinery v0.10.1-0.20200914045248-546ceea96940
2626
)
2727

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

0 commit comments

Comments
 (0)