-
Notifications
You must be signed in to change notification settings - Fork 4.7k
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 NodePort test #15766
Fix NodePort test #15766
Conversation
/assign deads2k |
1ca6a15
to
2e54c68
Compare
The initial test run failed, but on further investigation, it was a pre-existing flake, #13108, not anything new. After adding a commit with a bit of debugging, it has passed multiple times... |
2e54c68
to
c96875b
Compare
@danwinship: 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. |
@stevekuznetsov some bot bugginess here: after I pushed some new commits, causing the tests to be rerun, it's now telling me that extended_networking failed... but it didn't actually re-run extended_networking, and the link points to an old test run that has since been GCed. (Which is probably the logs from the last time it did get run for this PR, but I don't know.) |
/retest |
Weird -- you will see the old link in the table while it edits it with new info, so it may seem new, but that should not have stuck around as we can see the networking test is green. |
@Kargakis maybe a github call failed? |
@stevekuznetsov extended_networking_minimal is green. It's complaining that the full extended_networking test failed, but it didn't run it again. |
Hrm, the extended_networking job seems to be |
For context, |
No, we don't want it to run on every PR; extended_networking_minimal should run on every test (which it does) and extended_networking should only run when requested. I did previously request that it be run here, and it did get run, but then when a retest happened after pushing a new commit, the bot seemed to get confused (claiming that the test had failed even though it hadn't even run again) |
Hmm yeah what you saw may have just been the bot refreshing the table -- it happens in those situations. |
Yeah, the stale comment is another known issue. |
@deads2k: master's open, can this get a lgtm? |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: danwinship, deads2k The full list of commands accepted by this bot can be found here.
Needs approval from an approver in each of these OWNERS Files:
You can indicate your approval by writing |
Automatic merge from submit-queue (batch tested with PRs 16226, 16377, 15766, 16299, 16153) |
Pulls in the k8s test utils fix from kubernetes/kubernetes#49025 to make the NodePort test work on non-cloud installs again.
Fixes #15253