-
Notifications
You must be signed in to change notification settings - Fork 330
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
OCPBUGS-33724: Fixes update issue with KubeVirt platform #4039
Conversation
Signed-off-by: David Vossel <[email protected]>
@davidvossel: This pull request references Jira Issue OCPBUGS-33724, which is invalid:
Comment The bug has been updated to refer to the pull request using the external bug tracker. 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. |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: davidvossel 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 |
/jira refresh |
@davidvossel: This pull request references Jira Issue OCPBUGS-33724, which is valid. The bug has been moved to the POST state. 3 validation(s) were run on this bug
No GitHub users were found matching the public email listed for the QA contact in Jira ([email protected]), skipping review request. 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. |
/area control-plane-operator |
/retest |
/lgtm |
/hold Revision 78ed89e was retested 3 times: holding |
/hold cancel |
/retest required |
@davidvossel: The
The following commands are available to trigger optional jobs:
Use
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 kubernetes-sigs/prow repository. |
/test e2e-azure e2e-aws |
@davidvossel: The following test 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. |
cd2d529
into
openshift:main
@davidvossel: Jira Issue OCPBUGS-33724: All pull requests linked via external trackers have merged: Jira Issue OCPBUGS-33724 has been moved to the MODIFIED state. 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. |
[ART PR BUILD NOTIFIER] This PR has been included in build ose-hypershift-container-v4.17.0-202406041111.p0.gcd2d529.assembly.stream.el9 for distgit hypershift. |
/cherry-pick release-4.16 release-4.15 release-4.14 |
@davidvossel: new pull request created: #4817 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 kubernetes-sigs/prow repository. |
A bug fix (#3382) went in earlier this year that corrected an issue where the kubevirt cloud controller manager (kccm) was not having the deployment config accurately applied.
This resulted in some deployments having the
replace
update strategy instead ofRollingUpdate
update strategy.When we update OCP from one of the older versions which deployed kccm with
replace
strategy, the update fails because we attempt to setRollingUpdate
update strategy parameters when the update strategy is stillreplace
.To fix this, when we set the inplace update parameters, we need to ensure that the upstate strategy type is set to
RollingUpdate
as well.