-
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
wait for kube controllers to be ready before starting informers #17855
Conversation
} else { | ||
StartInformers(ctx.Stop) | ||
} | ||
close(ctx.InformersStarted) |
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.
So As I understand it - the reason we had to make this change is because - in case of openshift (where StartInformers
is not nil), we do not want to close the ctx.InformersStarted
channel immediately after calling StartInformers
because we want control over that in openshift code.
Do we want to backport this to upstream at all?
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.
So As I understand it - the reason we had to make this change is because - in case of openshift (where StartInformers is not nil), we do not want to close the ctx.InformersStarted channel immediately after calling StartInformers because we want control over that in openshift code.
Correct
Do we want to backport this to upstream at all?
No. In 3.9, we plan to start executing this separately.
/retest |
1 similar comment
/retest |
/lgtm |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: deads2k, derekwaynecarr 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 |
/retest |
2 similar comments
/retest |
/retest |
@stevekuznetsov are the e2e tests borked? |
/retest |
/retest No idea -- router tests seem 100% broken in that last run |
We're not seeing that in other runs of the job. Could be local to this. |
@stevekuznetsov It's happening on every pull to older branches. See #17896 and #17807 and and #17849 |
It wasn't us. Nothing merged since the last successful merge here (#17690) and that passed while running those tests. We merged zero commits and now it breaks every time. It's something in the infrastructure.
|
@stevekuznetsov aka "I didn't ask at random" |
This is probably related to the Go version on the AMI. We have never really had an approach to versioning the AMIs and approaches that would maintain N AMIs for each version we needed were shot down in the distant past. Right now I think we should just ignore these tests for the older branches. In the future we need to think critically about whether or not we can either containerize the test as-is or remove it's dependency on Docker so that it can run wherever. |
/retest Please review the full test history for this PR and help us cut down flakes. |
/retest |
/retest @deads2k this now should work I hope |
/retest |
/test all [submit-queue is verifying that this PR is safe to merge] |
/retest |
There is no point in re-testing this PR. As explained above we do not have support in the Origin tests for backports to a version of Origin that does not use the same Go version as master. Green-button this or try to get the OSE CI to cooperate, as it has that support. |
We updated the tests. Note the green e2e run. /retest |
/retest |
@deads2k: The following tests 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. |
This had all tests green. CI seems globally broken now, but it clears a blocker bug. The two other changes that went in are unrelated. Merging. |
Fixes the various controller panic problems.
/assign derekwaynecarr
/assign gnufied