-
Notifications
You must be signed in to change notification settings - Fork 221
fix(e2e): resolve multiple ocp-operator-nightly test failures [AI /fix-e2e] #4526
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
Merged
openshift-merge-bot
merged 16 commits into
redhat-developer:main
from
zdrapela:fix/e2e-ocp-operator-nightly-failures
Apr 13, 2026
Merged
Changes from all commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
2d289d4
fix(e2e): resolve multiple ocp-operator-nightly test failures
zdrapela 129763f
fix(e2e): improve RBAC test reliability with API-based cleanup and he…
zdrapela 066a2b7
fix(e2e): fix subsequent CI failures from PR feedback
zdrapela 1bf66c7
fix(e2e): healer-driven fixes for adoption-insights and bulk-import
zdrapela 7e849dc
fix(e2e): handle Promise.race losing promise to prevent unhandled rej…
zdrapela 43098a9
fix(e2e): restore original adoption-insights setup with targeted fixes
zdrapela 86f0090
fix(e2e): increase role update success message timeout to 15s
zdrapela 2e5af4e
fix(e2e): fixme RBAC tests with broken CSV policy loading, fix bulk-i…
zdrapela 811b162
fix(e2e): fix RBAC conditional policies not loaded in operator deploy…
zdrapela 7d233b8
revert(e2e): revert all bulk-import changes — fix was ineffective
zdrapela af10494
fix(e2e): verify '3 Permissions' heading in RBAC test
zdrapela 7cea0b1
fix(e2e): revert Choose button fallback to upstream behavior
zdrapela 1dfb22b
fix(e2e): revert unnecessary RBAC config changes
zdrapela a885139
fix(e2e): address review — remove dead code and fix API context leak
zdrapela ce6dab3
fix(e2e): narrow condition-read audit status to by-id/404 only
zdrapela b537cc8
fix(e2e): remove ineffective hideQuickstart and toBeEnabled checks
zdrapela File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Now that all 6 call sites of
config::create_conditional_policies_operatorare removed, the function definition itself is dead code (.ci/pipelines/lib/config.sh:110-124). Its mention in.ci/pipelines/lib/README.md:64should be cleaned up too.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.
Good catch — removed the
config::create_conditional_policies_operatorfunction definition fromconfig.shand cleaned up the reference inREADME.md. Done in bfd155b.