forked from maistra/istio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
127 lines (117 loc) · 5.23 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
module istio.io/istio
go 1.15
// pin to v1.9.5
replace istio.io/api => github.com/istio/api v0.0.0-20210419172736-e076ff10ec38
replace github.com/spf13/viper => github.com/istio/viper v1.3.3-0.20190515210538-2789fed3109c
// 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.73.0
contrib.go.opencensus.io/exporter/prometheus v0.2.0
github.com/Masterminds/sprig/v3 v3.2.0
github.com/aws/aws-sdk-go v1.36.19
github.com/cenkalti/backoff v2.2.1+incompatible
github.com/census-instrumentation/opencensus-proto v0.3.0
github.com/cheggaaa/pb/v3 v3.0.5
github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403
github.com/cncf/xds/go v0.0.0-20210312221358-fbca930ec8ed
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/davecgh/go-spew v1.1.1
github.com/docker/distribution v2.7.1+incompatible
github.com/envoyproxy/go-control-plane v0.9.9-0.20210420150223-d760b7f6014b
github.com/evanphx/json-patch v4.9.0+incompatible
github.com/evanphx/json-patch/v5 v5.1.0
github.com/fatih/color v1.10.0
github.com/fsnotify/fsnotify v1.4.9
github.com/ghodss/yaml v1.0.0
github.com/gogo/protobuf v1.3.2
github.com/golang/protobuf v1.4.3
github.com/google/go-cmp v0.5.4
github.com/google/gofuzz v1.2.0
github.com/google/uuid v1.1.3
github.com/gorilla/mux v1.8.0
github.com/gorilla/websocket v1.4.2
github.com/grpc-ecosystem/go-grpc-middleware v1.2.2
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.1
github.com/hashicorp/golang-lru v0.5.4
github.com/kr/pretty v0.2.1
github.com/kr/text v0.2.0 // indirect
github.com/kylelemons/godebug v1.1.0
github.com/lestrrat-go/jwx v1.0.6
github.com/maistra/xns-informer v0.0.0-20210707160032-977ec17e2e0e
github.com/mattn/go-isatty v0.0.12
github.com/mholt/archiver/v3 v3.5.0
github.com/miekg/dns v1.1.35
github.com/mitchellh/copystructure v1.0.0
github.com/mitchellh/go-homedir v1.1.0
github.com/mitchellh/hashstructure/v2 v2.0.1
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/onsi/gomega v1.10.4
github.com/openshift/api v0.0.0-20200929171550-c99a4deebbe5
github.com/openshift/client-go v0.0.0-20200929181438-91d71ef2122c
github.com/pkg/errors v0.9.1
github.com/pmezard/go-difflib v1.0.0
github.com/prometheus/client_golang v1.9.0
github.com/prometheus/client_model v0.2.0
github.com/prometheus/common v0.15.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.1.1
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.7.1
github.com/stretchr/testify v1.6.1
github.com/xeipuuv/gojsonpointer v0.0.0-20190905194746-02993c407bfb // indirect
github.com/yl2chen/cidranger v1.0.2
go.opencensus.io v0.22.5
go.uber.org/atomic v1.7.0
go.uber.org/multierr v1.6.0
go.uber.org/zap v1.16.0 // indirect
golang.org/x/crypto v0.0.0-20201221181555-eec23a3978ad // indirect
golang.org/x/net v0.0.0-20201224014010-6772e930b67b
golang.org/x/oauth2 v0.0.0-20201208152858-08078c50e5b5
golang.org/x/sync v0.0.0-20201207232520-09787c993a3a
golang.org/x/sys v0.0.0-20201214210602-f9fddec55a1e
golang.org/x/time v0.0.0-20201208040808-7e3f01d25324
gomodules.xyz/jsonpatch/v2 v2.1.0
gomodules.xyz/jsonpatch/v3 v3.0.1
google.golang.org/genproto v0.0.0-20201203001206-6486ece9c497
google.golang.org/grpc v1.36.0
google.golang.org/grpc/examples v0.0.0-20200825162801-44d73dff99bf // indirect
google.golang.org/protobuf v1.25.0
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/square/go-jose.v2 v2.5.1
gopkg.in/yaml.v2 v2.3.0
gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776
helm.sh/helm/v3 v3.4.2
honnef.co/go/tools v0.0.1-2020.1.5 // indirect
istio.io/api v0.0.0-20210913072118-82994a85619d
istio.io/client-go v1.9.8-0.20210913073319-ea90aa00229b
istio.io/gogo-genproto v0.0.0-20210913072519-c32f2e74f5c4
istio.io/pkg v0.0.0-20201230223204-2d0a1c8bd9e5
k8s.io/api v0.20.1
k8s.io/apiextensions-apiserver v0.20.1
k8s.io/apimachinery v0.20.1
k8s.io/cli-runtime v0.20.1
k8s.io/client-go v0.20.1
k8s.io/kube-openapi v0.0.0-20210312000640-9f480bcdc475
k8s.io/kubectl v0.20.1
k8s.io/utils v0.0.0-20201110183641-67b214c5f920
maistra.io/api v0.0.0-20211119171546-348bbce3ca27
sigs.k8s.io/controller-runtime v0.7.0
sigs.k8s.io/service-apis v0.1.0
sigs.k8s.io/yaml v1.2.0
)
replace github.com/envoyproxy/go-control-plane => github.com/envoyproxy/go-control-plane v0.9.9