-
Notifications
You must be signed in to change notification settings - Fork 4.9k
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
metallb-addon: Update metallb from 0.8.2 to 0.9.6 #11410
metallb-addon: Update metallb from 0.8.2 to 0.9.6 #11410
Conversation
This change isn't strictly necessary but the newer versions of metallb contain some really nice quality of life improvements, and better support newer (installed by default) versions of kubernetes better. A sample of some improvements this brings to metallb add-on installed by minikube: - [Layer2 doesn't update when when ip changes](metallb/metallb#520) - this hit me, and might be hitting others - [Allow spaces in configs](metallb/metallb#500) - quality of life - [selflink is deprecated](metallb/metallb#812) - Kubernetes deprecation (I believe seeing this is in the logs is what originally caused me to look into upgrading it)
Welcome @r4j4h! |
Hi @r4j4h. Thanks for your PR. I'm waiting for a kubernetes member to verify that this patch is reasonable to test. If it is, they should reply with Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. |
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: r4j4h The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Can one of the admins verify this patch? |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@r4j4h thank you for this PR ! it looks doing the the right thing, admit-ably I haven't used this addon myself and wouldn't know what is a good way to test it.
do you mind sharing an example of using metallb in the PR description ? it could be helpful to others who wanna learn metallb with minikbue. maybe we could have an entry about metalb in our tutorials https://minikube.sigs.k8s.io/docs/tutorials/
ideally we should have had a sub test for MetalLb in our TestAddons located here https://github.com/medyagh/minikube/blob/1be59b8f23c66d9a6be174dcd579b17302857f5f/test/integration/addons_test.go#L65
/ok-to-test |
@r4j4h: The following test failed, say
Full PR test history. Your PR dashboard. Please help us cut down on flakes by linking to an open issue when you hit one in your PR. Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes/test-infra repository. I understand the commands that are listed here. |
kvm2 driver with docker runtime
Times for minikube (PR 11410) ingress: 35.2s 35.7s 42.7s 34.8s 34.7s Times for minikube start: 48.0s 47.1s 46.5s 47.1s 46.2s docker driver with docker runtime
Times for minikube start: 21.2s 21.6s 21.1s 21.1s 21.2s Times for minikube ingress: 32.5s 32.9s 39.0s 33.5s 37.5s docker driver with containerd runtime
Times for minikube start: 42.2s 42.7s 46.8s 42.9s 42.1s |
Looks good to me @r4j4h , Thank you for this PR and improving minikube, |
Sorry for not seeing your feedback sooner medyagh! Time can be so sparse, especially when there are other pressing issues. It was my pleasure contributing, and I hope to again soon. I will try to circle back around and add metallb to the stub soon. |
This change isn't strictly necessary but the newer versions of metallb contain some really nice quality of life improvements, and better support newer (installed by default) versions of kubernetes better.
A sample of some improvements this brings to metallb add-on installed by minikube:
Note: Happy to update any relevant tests, I didn't see any for this but I didn't look THAT closely, just let me know. I've been running this successfully with
minikube addons enable metallb --images="Controller=metallb/controller:v0.9.6,Speaker=metallb/speaker:v0.9.6"
for days now.