-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathgo.mod
More file actions
25 lines (22 loc) · 909 Bytes
/
go.mod
File metadata and controls
25 lines (22 loc) · 909 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
module github.com/open-cluster-management/multicloud-operators-policy-controller
go 1.13
require (
github.com/go-openapi/spec v0.19.4
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
github.com/onsi/ginkgo v1.12.2 // indirect
github.com/onsi/gomega v1.10.1
github.com/operator-framework/operator-sdk v0.17.0
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.4.0
golang.org/x/net v0.0.0-20200520004742-59133d7f0dd7
k8s.io/api v0.17.4
k8s.io/apimachinery v0.17.4
k8s.io/client-go v12.0.0+incompatible
k8s.io/kube-openapi v0.0.0-20200121204235-bf4fb3bd569c
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
howett.net/plist => github.com/DHowett/go-plist v0.0.0-20181124034731-591f970eefbb
k8s.io/client-go => k8s.io/client-go v0.17.4 // Required by prometheus-operator
)