-
Notifications
You must be signed in to change notification settings - Fork 13
/
go.mod
34 lines (30 loc) · 1.2 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
module github.com/IBM/ibm-management-ingress-operator
go 1.13
require (
github.com/IBM/controller-filtered-cache v0.2.0
github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6 // indirect
github.com/jetstack/cert-manager v0.10.0
github.com/openshift/api v3.9.1-0.20190924102528-32369d4db2ad+incompatible
github.com/pkg/errors v0.9.1 // indirect
github.com/prometheus/client_golang v1.5.1 // indirect
github.com/stretchr/testify v1.6.1 // indirect
go.uber.org/zap v1.13.0 // indirect
golang.org/x/lint v0.0.0-20191125180803-fdd1cda4f05f // indirect
golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect
google.golang.org/appengine v1.6.5 // indirect
google.golang.org/protobuf v1.25.0 // indirect
gopkg.in/yaml.v2 v2.3.0
k8s.io/api v0.18.8
k8s.io/apimachinery v0.18.8
k8s.io/client-go v11.0.1-0.20190409021438-1a26190bd76a+incompatible
k8s.io/klog v1.0.0
sigs.k8s.io/controller-runtime v0.6.2
)
require (
github.com/gogo/protobuf v1.3.2 // indirect
golang.org/x/crypto v0.0.0-20201216223049-8b5274cf687f // indirect
)
replace (
golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9 => golang.org/x/crypto v0.0.0-20201216223049-8b5274cf687f
k8s.io/client-go => k8s.io/client-go v0.18.8
)