Skip to content

Commit

Permalink
Merge pull request #613 from openshift-cherrypick-robot/cherry-pick-6…
Browse files Browse the repository at this point in the history
…12-to-release-4.15

[release-4.15] OCPBUGS-32711: Accommodate the case in readiness calculation where readyVGCount is greater than expectedVGCount
  • Loading branch information
openshift-merge-bot[bot] authored May 24, 2024
2 parents b117ab4 + 084a2c9 commit a0ce8bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/controllers/lvmcluster/controller.go
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ func (r *Reconciler) updateLVMClusterStatus(ctx context.Context, instance *lvmv1
instance.Status.State = lvmv1alpha1.LVMStatusFailed
} else if isDegraded {
instance.Status.State = lvmv1alpha1.LVMStatusDegraded
} else if isReady && expectedVGCount == readyVGCount {
} else if isReady && expectedVGCount <= readyVGCount { // readyVGCount can be greater than expectedVGCount in case there are taints on some nodes, e.g. during an upgrade. See https://issues.redhat.com/browse/OCPBUGS-30830 for further details.
instance.Status.State = lvmv1alpha1.LVMStatusReady
instance.Status.Ready = true
}
Expand Down

0 comments on commit a0ce8bc

Please sign in to comment.