forked from alauda/nativestor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
46 lines (43 loc) · 1.73 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
module github.com/alauda/topolvm-operator
go 1.16
require (
github.com/Masterminds/goutils v1.1.0 // indirect
github.com/Masterminds/semver v1.5.0 // indirect
github.com/Masterminds/sprig v2.22.0+incompatible // indirect
github.com/banzaicloud/k8s-objectmatcher v1.5.2
github.com/coreos/go-systemd v0.0.0-20191104093116-d3cd4ed1dbcf // indirect
github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f
github.com/fatih/color v1.13.0 // indirect
github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32
github.com/google/go-cmp v0.5.5
github.com/google/uuid v1.1.2
github.com/huandu/xstrings v1.3.2 // indirect
github.com/mattn/go-colorable v0.1.11 // indirect
github.com/mitchellh/copystructure v1.0.0 // indirect
github.com/mitchellh/reflectwalk v1.0.1 // indirect
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822
github.com/onsi/ginkgo v1.16.4
github.com/onsi/gomega v1.14.0
github.com/openshift/api v0.0.0-20210105115604-44119421ec6b
github.com/pkg/errors v0.9.1
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.50.0
github.com/prometheus-operator/prometheus-operator/pkg/client v0.50.0
github.com/prometheus/client_golang v1.11.0
github.com/spf13/cobra v1.1.3
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.7.0
github.com/topolvm/topolvm v0.8.1
golang.org/x/crypto v0.0.0-20210513164829-c07d793c2f9a // indirect
gopkg.in/yaml.v2 v2.4.0
k8s.io/api v0.22.0
k8s.io/apiextensions-apiserver v0.21.3
k8s.io/apimachinery v0.22.0
k8s.io/client-go v0.22.0
k8s.io/klog v1.0.0
sigs.k8s.io/controller-runtime v0.9.6
sigs.k8s.io/yaml v1.2.0
)
replace (
github.com/gogo/protobuf => github.com/gogo/protobuf v1.3.2
github.com/hashicorp/vault => github.com/hashicorp/vault v1.8.4
)