-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathgo.mod
58 lines (55 loc) · 2.24 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
module github.com/symcn/meshach
go 1.13
require (
contrib.go.opencensus.io/exporter/prometheus v0.1.0
github.com/DeanThompson/ginpprof v0.0.0-20190408063150-3be636683586
github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32
github.com/gin-gonic/gin v1.7.2
github.com/go-logr/logr v0.1.0
github.com/go-playground/validator/v10 v10.8.0 // indirect
github.com/go-zookeeper/zk v1.0.2
github.com/gofrs/uuid v3.3.0+incompatible
github.com/gogo/protobuf v1.3.1
github.com/golang/mock v1.3.1
github.com/golang/protobuf v1.5.2 // indirect
github.com/json-iterator/go v1.1.11 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/mattn/go-isatty v0.0.13 // indirect
github.com/nacos-group/nacos-sdk-go v0.3.2
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect
github.com/onsi/ginkgo v1.14.1
github.com/onsi/gomega v1.10.2
github.com/operator-framework/operator-sdk v0.17.1
github.com/pkg/errors v0.9.1
github.com/prometheus/client_golang v1.5.1
github.com/spf13/cobra v1.1.1
github.com/spf13/pflag v1.0.5
github.com/ugorji/go v1.2.6 // indirect
go.opencensus.io v0.22.2
golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5 // indirect
golang.org/x/mod v0.4.0 // indirect
golang.org/x/tools v0.0.0-20210115202250-e0d201561e39 // indirect
google.golang.org/grpc v1.28.1
google.golang.org/protobuf v1.27.1 // indirect
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
honnef.co/go/tools v0.0.1-2020.1.6 // indirect
istio.io/api v0.0.0-20200521171657-32375f234cc1
istio.io/client-go v0.0.0-20200518164621-ef682e2929e5
istio.io/istio v0.0.0-20200525040124-4ed2c700a1d9
k8s.io/api v0.18.3
k8s.io/apiextensions-apiserver v0.18.0
k8s.io/apimachinery v0.18.3
k8s.io/client-go v12.0.0+incompatible
k8s.io/helm v2.16.3+incompatible
k8s.io/klog v1.0.0
k8s.io/sample-controller v0.17.4
sigs.k8s.io/controller-runtime v0.5.2
)
replace (
github.com/Azure/go-autorest => github.com/Azure/go-autorest v13.3.2+incompatible // Required by OLM
k8s.io/api => k8s.io/api v0.17.4
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.17.4
k8s.io/apimachinery => k8s.io/apimachinery v0.17.4
k8s.io/client-go => k8s.io/client-go v0.17.4 // Required by prometheus-operator
)