Skip to content

Commit 4bafdca

Browse files
joelanfordvincepri
authored andcommitted
🏃 Update dependencies to k8s 1.17
1. kubernetes/client-go@fed41f5 This client-go commit is a refactoring that changes how the client and server negotiate the content type and decoder. As a result of this refactoring, controller-runtime's recorder_test has a broken assumption for causing an error creating the client. Therefore, this commit updates the recorder test to use an invalid host, which causes the client to fail in the same way as before, ensuring the test continues to pass. 2. kubernetes/client-go@ba49d2a This client-go commit is a breaking change to resourcelock.Interface. As a result of this change, controller-runtime's fake ResourceLock implementation needed to be updated to account for the interface change. Signed-off-by: Vince Prignano <[email protected]>
1 parent 702a4a4 commit 4bafdca

File tree

4 files changed

+145
-77
lines changed

4 files changed

+145
-77
lines changed

go.mod

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,17 @@ require (
1111
github.com/imdario/mergo v0.3.6 // indirect
1212
github.com/onsi/ginkgo v1.11.0
1313
github.com/onsi/gomega v1.8.1
14-
github.com/prometheus/client_golang v0.9.2
15-
github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910
16-
go.uber.org/atomic v1.3.2 // indirect
17-
go.uber.org/multierr v1.1.0 // indirect
18-
go.uber.org/zap v1.9.1
19-
golang.org/x/time v0.0.0-20181108054448-85acf8d2951c
14+
github.com/prometheus/client_golang v1.0.0
15+
github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90
16+
go.uber.org/zap v1.10.0
17+
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4
2018
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7
2119
gomodules.xyz/jsonpatch/v2 v2.0.1
2220
gopkg.in/fsnotify.v1 v1.4.7
23-
gopkg.in/inf.v0 v0.9.1 // indirect
24-
k8s.io/api v0.0.0-20190918155943-95b840bb6a1f
25-
k8s.io/apiextensions-apiserver v0.0.0-20190918161926-8f644eb6e783
26-
k8s.io/apimachinery v0.0.0-20190913080033-27d36303b655
27-
k8s.io/client-go v0.0.0-20190918160344-1fbdaa4c8d90
28-
k8s.io/utils v0.0.0-20190801114015-581e00157fb1
21+
k8s.io/api v0.17.2
22+
k8s.io/apiextensions-apiserver v0.17.2
23+
k8s.io/apimachinery v0.17.2
24+
k8s.io/client-go v0.17.2
25+
k8s.io/utils v0.0.0-20191114184206-e782cd3c129f
2926
sigs.k8s.io/yaml v1.1.0
3027
)

0 commit comments

Comments
 (0)