-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgo.mod
More file actions
25 lines (22 loc) · 802 Bytes
/
go.mod
File metadata and controls
25 lines (22 loc) · 802 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/aneeshkp/barometer-operator
go 1.13
require (
github.com/RHsyseng/operator-utils v0.0.0-20200417214513-7aac0c82a293
github.com/ghodss/yaml v1.0.0
github.com/go-logr/logr v0.1.0
github.com/go-openapi/spec v0.19.3
github.com/operator-framework/operator-sdk v0.18.1
github.com/sirupsen/logrus v1.5.0
github.com/spf13/afero v1.2.2
github.com/spf13/pflag v1.0.5
github.com/stretchr/testify v1.5.1
k8s.io/api v0.18.2
k8s.io/apimachinery v0.18.2
k8s.io/client-go v12.0.0+incompatible
k8s.io/kube-openapi v0.0.0-20200121204235-bf4fb3bd569c
sigs.k8s.io/controller-runtime v0.6.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.18.2 // Required by prometheus-operator
)