-
Notifications
You must be signed in to change notification settings - Fork 5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump kubernetes packages to v0.32.1 #20363
Conversation
e78d3cf
to
7e7f32f
Compare
/ok-to-test |
kvm2 driver with docker runtime
Times for minikube start: 47.5s 47.8s 51.5s 47.3s 48.5s Times for minikube ingress: 14.5s 15.5s 16.0s 15.4s 15.4s docker driver with docker runtime
Times for minikube start: 23.6s 23.9s 23.4s 20.8s 23.2s Times for minikube (PR 20363) ingress: 12.8s 13.3s 12.7s 12.3s 12.8s docker driver with containerd runtime
Times for minikube ingress: 38.8s 38.8s 38.8s 38.8s 39.2s Times for minikube start: 22.7s 22.5s 19.6s 19.5s 23.1s |
Here are the number of top 10 failed tests in each environments with lowest flake rate.
Besides the following environments also have failed tests: To see the flake rates of all tests by environment, click here. |
/lgtm |
thank you @prezha |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: medyagh, prezha The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Closes #20298
Resolves issues we saw in #20183 and that pr had to be reverted (#20229)
this pr bumps
k8s.io/api
,k8s.io/apimachinery
andk8s.io/client-go
packages tov0.32.1
and also fixes the tests failures accordingly in pkg/minikube/service/service_test.go and pkg/minikube/tunnel/loadbalancer_patcher_test.gobackground: in v0.32, some mock test "helper" functions we used are un-exported, so we have to initialize manually - example for fake secrets: https://github.com/kubernetes/client-go/blob/v0.31.0/kubernetes/typed/core/v1/fake/fake_secret.go vs https://github.com/kubernetes/client-go/blob/v0.32.1/kubernetes/typed/core/v1/fake/fake_secret.go
after
service test
$ go test k8s.io/minikube/pkg/minikube/service -v
tunnel test
$ go test k8s.io/minikube/pkg/minikube/tunnel -v