Skip to content

Commit 07e09f5

Browse files
committed
Restrict apimachinery dependency to v0.17.2
A mismatch between the apimachinery and client-go versions results in a errConfigurationInvalid does not implement "k8s.io/apimachinery/pkg/util/errors".Aggregate (missing Is method) build error. Restrict the API level until the other dependencies have had a chance to catch up.
1 parent 01d185b commit 07e09f5

File tree

2 files changed

+196
-3
lines changed

2 files changed

+196
-3
lines changed

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
module k8s-dt-node-labeller
22

3-
go 1.14
3+
go 1.13
44

55
require (
66
github.com/go-logr/logr v0.1.0
77
github.com/platinasystems/fdt v1.0.1
8-
k8s.io/api v0.18.0
9-
k8s.io/apimachinery v0.18.0
8+
k8s.io/api v0.17.2
9+
k8s.io/apimachinery v0.17.2
1010
sigs.k8s.io/controller-runtime v0.5.2
1111
)

0 commit comments

Comments
 (0)