-
Notifications
You must be signed in to change notification settings - Fork 33
OPRUN-4207: Update feature-gate processing to support disabled features #144
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
OPRUN-4207: Update feature-gate processing to support disabled features #144
Conversation
@tmshort: This pull request references OPRUN-4207 which is a valid jira issue. Warning: The referenced jira issue has an invalid target version for the target branch this PR targets: expected the story to target the "4.21.0" version, but no target version was set. 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 openshift-eng/jira-lifecycle-plugin repository. |
6e2ec00
to
39f65b1
Compare
Some feature-gates are mutually exclusive, and we need to ensure that those feature-gates are not simultaneously enabled. In some cames, we need to disable upstream flags all the time (e.g. WebhookOperatorCertManager). This defines a function for each downstream feature-gate that defines how upstream feature-gate flags and arguments should be generated based whether that downstream feature-gate is enabled or disabled. Because these are functions that provides Helm values, they no longer need to be separated along OperatorController and Catalogd lines; the functions determine where the Helm parameters are set. Added unit tests, mostly written by Claude Code Assisted-by: Claude Code Signed-off-by: Todd Short <todd.short@me.com>
39f65b1
to
0380780
Compare
/test openshift-e2e-aws |
/assign @bandrade |
Hi @bandrade , could you help test it? Thanks! |
/retest |
@tmshort: all tests passed! 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. |
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: camilamacedo86, tmshort 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 |
/lgtm |
@tmshort: This pull request references OPRUN-4207 which is a valid jira issue. Warning: The referenced jira issue has an invalid target version for the target branch this PR targets: expected the story to target the "4.21.0" version, but no target version was set. 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 openshift-eng/jira-lifecycle-plugin repository. |
@bandrade: This PR has been marked as verified by 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 openshift-eng/jira-lifecycle-plugin repository. |
Some feature-gates are mutually exclusive, and we need to ensure that those feature-gates are not simultaneously enabled. In some cames, we need to disable upstream flags all the time (e.g. WebhookOperatorCertManager).
This defines a function for each downstream feature-gate that defines how upstream feature-gate flags and arguments should be generated based whether that downstream feature-gate is enabled or disabled. Because these are functions that provides Helm values, they no longer need to be separated along OperatorController and Catalogd lines; the functions determine where the Helm parameters are set.
Added unit tests, mostly written by Claude Code
Assisted-by: Claude Code