-
Notifications
You must be signed in to change notification settings - Fork 16
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
serial: rewrite test 47674 #1196
base: main
Are you sure you want to change the base?
Conversation
623dc17
to
26d560f
Compare
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.
I'm generally in favor of this rewrite. Partial review.
8038f95
to
27991b1
Compare
/hold |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: shajmakh 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 |
The test fails on <4.18, skip running it until the bug is fixed. |
The previous version was fragile and maintained several times already. This fact means that the test should be rewritten and once the known bugs are fixed, new tests will be added to cover the e2e full scenario. The test goal is to verify that adjustments to NROP CR are done as expected and reflected in the RTE daemonsets. Previously, this was done via creating a new MCP for the test and associating to it one of the worker nodes that were part of the initial NROP node groups. This was causing a reboot when running on a cluster that is: a. < 4.18 or b. >= 4.18 and has the custom RTE selinux policy enabled In the new version of the test, we keep checking the same functionality while completely avoiding reboot. That is acheived by creating the new MCP, keeping it empty (no nodes are associated to it) and appending it as a second node group's selector. Then checks on the daemonsets are performed and the only cleanup would be deleting the test mcp. We keep the old version still because the new one will be skipped from running on < 4.18 due to https://issues.redhat.com/browse/OCPBUGS-52958. Once that is fixed, we should settle to the new version only. Signed-off-by: Shereen Haj <[email protected]>
/retest |
@shajmakh: The following tests failed, say
Full PR test history. Your PR dashboard. 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-sigs/prow repository. I understand the commands that are listed here. |
/retest |
The previous version was fragile and maintained several times already.
This fact means that the test should be rewritten and once the known bugs
are fixed, new tests will be added to cover the e2e full scenario.
The test goal is to verify that adjustments to NROP CR are done as
expected and reflected in the RTE daemonsets. Previously, this was done
via creating a new MCP for the test and associating to it one of the
worker nodes that were part of the initial NROP node groups. This was
causing a reboot when running on a cluster that is:
a. < 4.18 or
b. >= 4.18 and has the custom RTE selinux policy enabled
In the new version of the test, we keep checking the same functionality
while completely avoiding reboot. That is acheived by creating the new MCP,
keeping it empty (no nodes are associated to it) and appending it as a
second node group's selector. Then checks on the daemonsets are
performed and the only cleanup would be deleting the test mcp.