forked from istio/istio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
129 lines (118 loc) · 5.32 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
module istio.io/istio
go 1.15
replace github.com/golang/glog => github.com/istio/glog v0.0.0-20190424172949-d7cfb6fa2ccd
replace k8s.io/klog => github.com/istio/klog v0.0.0-20190424230111-fb7481ea8bcf
replace github.com/spf13/viper => github.com/istio/viper v1.3.3-0.20190515210538-2789fed3109c
// For license
replace github.com/docker/docker => github.com/docker/engine v1.4.2-0.20191011211953-adfac697dc5b
// Old version had no license
replace github.com/chzyer/logex => github.com/chzyer/logex v1.1.11-0.20170329064859-445be9e134b2
// Avoid pulling in incompatible libraries
replace github.com/docker/distribution => github.com/docker/distribution v2.7.1+incompatible
// Avoid pulling in kubernetes/kubernetes
replace github.com/Microsoft/hcsshim => github.com/Microsoft/hcsshim v0.8.8-0.20200421182805-c3e488f0d815
// Client-go does not handle different versions of mergo due to some breaking changes - use the matching version
replace github.com/imdario/mergo => github.com/imdario/mergo v0.3.5
// See https://github.com/kubernetes/kubernetes/issues/92867, there is a bug in the library
replace github.com/evanphx/json-patch => github.com/evanphx/json-patch v0.0.0-20190815234213-e83c0a1c26c8
require (
cloud.google.com/go v0.63.0
contrib.go.opencensus.io/exporter/prometheus v0.2.0
fortio.org/fortio v1.6.3
github.com/Masterminds/sprig/v3 v3.1.0
github.com/aws/aws-sdk-go v1.33.11
github.com/cenkalti/backoff v2.2.1+incompatible
github.com/census-instrumentation/opencensus-proto v0.3.0
github.com/cheggaaa/pb/v3 v3.0.4
github.com/cncf/udpa/go v0.0.0-20200629203442-efcf912fb354
github.com/codahale/hdrhistogram v0.0.0-20161010025455-3a0bb77429bd // indirect
github.com/containernetworking/cni v0.7.0-alpha1
github.com/containernetworking/plugins v0.7.3
github.com/coreos/go-oidc v2.2.1+incompatible
github.com/d4l3k/messagediff v1.2.1
github.com/davecgh/go-spew v1.1.1
github.com/docker/distribution v2.7.1+incompatible
github.com/docker/docker v1.13.1
github.com/docker/go-connections v0.4.0
github.com/envoyproxy/go-control-plane v0.9.7-0.20200811182123-112a4904c4b0
github.com/evanphx/json-patch v4.9.0+incompatible
github.com/fatih/color v1.9.0
github.com/fsnotify/fsnotify v1.4.9
github.com/ghodss/yaml v1.0.0
github.com/go-logr/logr v0.2.1-0.20200730175230-ee2de8da5be6 // indirect
github.com/gogo/protobuf v1.3.1
github.com/golang/protobuf v1.4.2
github.com/golang/sync v0.0.0-20180314180146-1d60e4601c6f
github.com/google/go-cmp v0.5.1
github.com/google/gofuzz v1.1.0
github.com/google/uuid v1.1.1
github.com/gorilla/mux v1.7.4
github.com/gorilla/websocket v1.4.2
github.com/grpc-ecosystem/go-grpc-middleware v1.2.0
github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0
github.com/hashicorp/go-multierror v1.1.0
github.com/hashicorp/go-version v1.2.0
github.com/hashicorp/golang-lru v0.5.4
github.com/hashicorp/vault/api v1.0.3
github.com/howeyc/fsnotify v0.9.0
github.com/kr/pretty v0.2.0
github.com/kylelemons/godebug v1.1.0
github.com/lestrrat-go/jwx v1.0.3
github.com/mattn/go-isatty v0.0.12
github.com/mholt/archiver/v3 v3.3.0
github.com/miekg/dns v1.1.30
github.com/mitchellh/copystructure v1.0.0
github.com/mitchellh/go-homedir v1.1.0
github.com/onsi/gomega v1.10.1
github.com/openshift/api v0.0.0-20200713203337-b2494ecb17dd
github.com/opentracing/opentracing-go v1.2.0
github.com/pkg/errors v0.9.1
github.com/pmezard/go-difflib v1.0.0
github.com/prometheus/client_golang v1.7.1
github.com/prometheus/client_model v0.2.0
github.com/prometheus/common v0.10.0
github.com/ryanuber/go-glob v1.0.0
github.com/satori/go.uuid v1.2.0
github.com/soheilhy/cmux v0.1.4
github.com/spf13/cobra v1.0.0
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.4.0
github.com/stretchr/testify v1.6.1
github.com/uber/jaeger-client-go v2.25.0+incompatible
github.com/uber/jaeger-lib v2.2.0+incompatible // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
github.com/yl2chen/cidranger v1.0.0
go.opencensus.io v0.22.4
go.uber.org/atomic v1.6.0
go.uber.org/multierr v1.5.0
go.uber.org/zap v1.15.0
golang.org/x/crypto v0.0.0-20200709230013-948cd5f35899
golang.org/x/net v0.0.0-20200707034311-ab3426394381
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e
google.golang.org/genproto v0.0.0-20200806141610-86f49bd18e98
google.golang.org/grpc v1.33.0-dev.0.20200828165940-d8ef479ab79a
google.golang.org/grpc/examples v0.0.0-20200825162801-44d73dff99bf // indirect
google.golang.org/protobuf v1.25.0
gopkg.in/d4l3k/messagediff.v1 v1.2.1
gopkg.in/square/go-jose.v2 v2.5.1
gopkg.in/yaml.v2 v2.3.0
gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c
helm.sh/helm/v3 v3.2.4
istio.io/api v0.0.0-20200909154706-0c9c37277f0d
istio.io/client-go v0.0.0-20200812230733-f5504d568313
istio.io/gogo-genproto v0.0.0-20200720193312-b523a30fe746
istio.io/pkg v0.0.0-20200807223740-7c8bbc23c476
k8s.io/api v0.19.0
k8s.io/apiextensions-apiserver v0.19.0
k8s.io/apimachinery v0.19.0
k8s.io/cli-runtime v0.19.0
k8s.io/client-go v0.19.0
k8s.io/kubectl v0.19.0
k8s.io/utils v0.0.0-20200729134348-d5654de09c73
sigs.k8s.io/controller-runtime v0.6.1
sigs.k8s.io/service-apis v0.0.0-20200731055707-56154e7bfde5
sigs.k8s.io/yaml v1.2.0
)