You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[DEVELOPER][FEATURE] The status updater's WithSmartRequeue method now takes functions as optional arguments. These functions take the ReconcileResult and return a smart requeue value, which will then overwrite the value from the ReconcileResult. This allows determining the smart requeue value based on the object's updated conditions, which was complicated to achieve before this change.
add predicates for each specific type of event #151
[DEVELOPER][FEATURE] The pkg/controller library now contains the following new predicates:
OnCreatePredicate() reacts only on create events
OnDeletePredicate() reacts only on delete events
OnUpdatePredicate() reacts only on update events
OnGenericPredicate() reacts only on generic events
OnEventTypePredicate(eventType) allows to pass in the event type dynamically