# Functions
ConstantBackoff computes a constant backoff delay.
ExponentialBackoff computes an exponentially increasing backoff delay.
NewController creates a new controller.
WithBufferSize sets the buffer size for reconciliation queues.
WithLog sets the Controller Logger.
WithOptions sets the Controller options.
WithParallelism sets the number of parallel goroutines to use for reconciliation.
WithTimeout sets the timeout for each reconciliation cycle.
# Structs
Ack acknowledges a reconciliation request.
Controller manages a set of control loops for reconciling objects.
Fail fails a reconciliation request.
Options is options for the Controller.
Request is a reconciler request.
Requeue requeues a reconciliation request.
Retry retries a reconciliation request.
RetryAfter retries a reconciliation request after a delay.
RetryAt retries a reconciliation request at a specific time.
RetryWith retries a reconciliation request with a backoff policy.
# Type aliases
Backoff is a function for computing the backoff duration following a failed request.
Option is a Controller option.
Reconciler reconciles an object.