Slide 57
Slide 57 text
@systemcraftsman
Reconciliation in Java Operator SDK
# Reconciliation execution is always triggered by an event.
# Events typically come from a primary resource, most of the time a custom
resource. Reconciler implementations are associated with a given resource type.
# No concurrent reconciliation happens for any given resource.
# If an exception is thrown during execution, then it schedules a retry.
# If new events are received during the controller execution, then a new
reconciliation is scheduled.
# If the reconcilier instructed the SDK to reschedule a reconciliation at a later
date, then a timer event with the specified delay is scheduled.