-
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
Fix host network interface for VBox #8475
Conversation
Hi @11janci. 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. |
Can one of the admins verify this patch? |
Codecov Report
@@ Coverage Diff @@
## master #8475 +/- ##
==========================================
- Coverage 34.05% 34.05% -0.01%
==========================================
Files 153 153
Lines 9840 9841 +1
==========================================
Hits 3351 3351
- Misses 6086 6087 +1
Partials 403 403
|
ad179b1
to
254f839
Compare
254f839
to
bf59d39
Compare
/assign @afbjorklund |
/ok-to-test |
/ok-to-test |
kvm2 Driver |
/test all |
@11janci: No jobs can be run with
In response to this:
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. |
/test pull-minikube-platform-tests |
can somebody pls help with the tests? the failures are unrelated, plus it seems it got stuck and I'm not able to rerun.. |
@11janci: 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. |
@11janci the test failures are flakes unrelated to this PR |
Nice find! Not the bug that I was expecting, will give it a try locally to see that it fixes the issue |
Much happier:
|
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.
/lgtm
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: 11janci, afbjorklund 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 |
Fixes #8456
The regex selecting the interface was greedy - if another interface was printed after the one we're looking for, it would skip everything up to the
IPAddress
of the last interface in the list.Also made more robust for matching the interface names (to prevent mismatches when multiple interfaces are named
some_if
,some_if #2
,some_if #3
etc.)