Skip to content

Release v0.23.0

Latest

Choose a tag to compare

@github-actions github-actions released this 07 Oct 14:29
· 13 commits to main since this release
57cba28

Changes included in v0.23.0:

🚀 Features

  • conditional smartrequeue #154
    • [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