OCPBUGS-77498: Fix failure domain matching during vsphere boot image updates#5723
Conversation
|
@djoshy: This pull request references Jira Issue OCPBUGS-77498, which is valid. The bug has been moved to the POST state. 3 validation(s) were run on this bug
The bug has been updated to refer to the pull request using the external bug tracker. DetailsIn 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. |
|
/payload-job periodic-ci-openshift-release-main-nightly-4.22-e2e-vsphere-ovn-multi-vcenter |
|
@djoshy: trigger 1 job(s) for the /payload-(with-prs|job|aggregate|job-with-prs|aggregate-with-prs) command
See details on https://pr-payload-tests.ci.openshift.org/runs/ci/3871ac70-164e-11f1-9f2e-cd5fe56bc9a1-0 |
|
/payload-job periodic-ci-openshift-release-main-nightly-4.22-e2e-vsphere-ovn-multi-vcenter |
|
@djoshy: trigger 1 job(s) for the /payload-(with-prs|job|aggregate|job-with-prs|aggregate-with-prs) command
See details on https://pr-payload-tests.ci.openshift.org/runs/ci/2d790690-165a-11f1-848e-e7796b5dafcd-0 |
|
Multi vCenter payload run looks good! 🎉 /verified by payloads |
|
@djoshy: This PR has been marked as verified by DetailsIn 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: djoshy, yuqi-zhang The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
caa75db
into
openshift:main
|
@djoshy: Jira Issue Verification Checks: Jira Issue OCPBUGS-77498 Jira Issue OCPBUGS-77498 has been moved to the MODIFIED state and will move to the VERIFIED state when the change is available in an accepted nightly payload. 🕓 DetailsIn 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. |
|
/cherry-pick release-4.21 release-4.20 |
|
@djoshy: new pull request created: #5727 DetailsIn 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. |
|
Fix included in accepted release 4.22.0-0.nightly-2026-03-05-070435 |
- What I did
The previous condition (originally based on a check in the control plane operator) was not used correctly. The equality check on the last comparison should be
!=and the whole condition should be||, not&&since we are checking for the negative case. It was also a missing comparison on the Datacenter field.As a result of the incorrect condition, the matching would fail in multi vCenter clusters, but would work correctly on non-single vCenter cases as there is only one to match to.
- How to verify it
Multi-center vsphere jobs should be enough to verify this fix.