Skip to content
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

🌱 Add a helper func to check if a managed cluster condition changes #230

Merged

Conversation

zhujian7
Copy link
Member

Add a helper func to check if a managed cluster condition changes, so users can use this to make the agent deploy controller watch if the managed cluster condition changes.
related PR: #199

@zhujian7
Copy link
Member Author

/cc @qiujian16

newAvailableCondition := meta.FindStatusCondition(new.Status.Conditions, conditionType)

return oldAvailableCondition != nil && newAvailableCondition != nil &&
oldAvailableCondition.Status != newAvailableCondition.Status
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

what if both condition are nil? and do we need to compare observerdGeneration and lastTransittionTime

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

if both are nil, it does not change.
if one is nil, but the other is not, it changes, I will handle this.
there is no observerdGenereation in the managed cluster, and we only care about the condition status, so I think condition.status is enough.

Signed-off-by: zhujian <jiazhu@redhat.com>
@qiujian16
Copy link
Member

/approve
/lgtm

Copy link
Contributor

openshift-ci bot commented Jan 19, 2024

[APPROVALNOTIFIER] This PR is APPROVED

This pull-request has been approved by: qiujian16, zhujian7

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 /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@openshift-merge-bot openshift-merge-bot bot merged commit d2afcef into open-cluster-management-io:main Jan 19, 2024
9 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants