Closed yuanchen8911 closed 1 year ago
/assign @christopherhein
[APPROVALNOTIFIER] This PR is APPROVED
This pull-request has been approved by: christopherhein, yuanchen8911
The full list of commands accepted by this bot can be found here.
The pull request process is described here
What this PR does / why we need it:
In the current implementation, there can be a large number of redundant conditions with the identical
Reason
,Message
andStatus
in a VC's.Status.Conditions
. A large number of duplicated conditions can cause potential performance issues. It's hard to read too.This PR makes a change on how to add a VC's condition to
.Status.Conditions
. It checks whether a new condition exits byReason
andStatus
and adds the condition only when it does not exist. if the condition already exists, it will only update the condition'slastTransitionTime
. It sets.Conditions.Status
value too.Which issue(s) this PR fixes (optional, in
fixes #<issue number>(, fixes #<issue_number>, ...)
format, will close the issue(s) when PR gets merged): Fixes #