forked from VictoriaMetrics/operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
39 lines (35 loc) · 1.35 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
module github.com/VictoriaMetrics/operator
go 1.13
require (
github.com/VictoriaMetrics/VictoriaMetrics v1.60.0
github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32
github.com/go-logr/logr v0.3.0
github.com/go-test/deep v1.0.7
github.com/hashicorp/go-version v1.2.1
github.com/kelseyhightower/envconfig v1.4.0
github.com/onsi/ginkgo v1.14.1
github.com/onsi/gomega v1.10.2
github.com/prometheus-operator/prometheus-operator v0.45.0
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.45.0
github.com/prometheus-operator/prometheus-operator/pkg/client v0.45.0
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.6.1
go.uber.org/zap v1.15.0
golang.org/x/net v0.0.0-20210520170846-37e1c6afe023
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
gopkg.in/yaml.v2 v2.4.0
k8s.io/api v0.20.2
k8s.io/apimachinery v0.20.2
k8s.io/client-go v12.0.0+incompatible
k8s.io/klog/v2 v2.4.0
k8s.io/utils v0.0.0-20210111153108-fddb29f9d009
sigs.k8s.io/controller-runtime v0.8.1
)
// Pinned to kubernetes-1.18.6
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.20.1
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.20.1
k8s.io/apimachinery => k8s.io/apimachinery v0.20.1
k8s.io/client-go => k8s.io/client-go v0.20.1
)