forked from tungstenfabric/tf-operator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
31 lines (28 loc) · 990 Bytes
/
Copy pathgo.mod
File metadata and controls
31 lines (28 loc) · 990 Bytes
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
module github.com/tungstenfabric/tf-operator
go 1.13
require (
github.com/Masterminds/semver v1.5.0 // indirect
github.com/Masterminds/sprig v2.22.0+incompatible
github.com/fatih/structs v1.1.0
github.com/ghodss/yaml v1.0.0
github.com/go-logr/logr v0.4.0
github.com/go-logr/zapr v0.2.0 // indirect
github.com/go-openapi/spec v0.19.3
github.com/google/go-cmp v0.5.2
github.com/operator-framework/operator-sdk v0.18.0
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.6.1
gopkg.in/ini.v1 v1.51.0
gopkg.in/yaml.v2 v2.4.0
k8s.io/api v0.19.0
k8s.io/apiextensions-apiserver v0.18.2
k8s.io/apimachinery v0.21.0
k8s.io/client-go v12.0.0+incompatible
k8s.io/kube-openapi v0.0.0-20210305001622-591a79e4bda7
sigs.k8s.io/controller-runtime v0.6.0
sigs.k8s.io/yaml v1.2.0
)
replace (
github.com/Azure/go-autorest => github.com/Azure/go-autorest v13.3.2+incompatible // Required by OLM
k8s.io/client-go => k8s.io/client-go v0.19.0 // Required by prometheus-operator
)