forked from shipwright-io/operator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
23 lines (20 loc) · 834 Bytes
/
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
module github.com/shipwright-io/operator
go 1.15
require (
github.com/go-logr/logr v0.4.0
github.com/manifestival/controller-runtime-client v0.4.0
github.com/manifestival/manifestival v0.7.0
github.com/onsi/ginkgo v1.14.1
github.com/onsi/gomega v1.10.2
k8s.io/api v0.19.7
k8s.io/apiextensions-apiserver v0.19.2
k8s.io/apimachinery v0.19.7
k8s.io/client-go v0.19.7
sigs.k8s.io/controller-runtime v0.7.2
)
// github.com/manifestival/controller-runtime-client v0.4.0 depends on
// github.com/manifestival/manifestival v0.6.0, which in turn depends on
// k8s.io/client-go v0.15.7. This is not compatible with v0.19.7 and leads to transitive
// dependency hell. Pinning k8s.io/client-go to the version shared by controller-runtime and
// the latest version of manifestival
replace k8s.io/client-go => k8s.io/client-go v0.19.7