Open
Description
Related to #617
As a user of controller-runtime, it is not immediately clear what returns from a Reconcile()
will force a requeue with (or without) an exponential backoff. Some quick examples:
return reconcile.Result{requeue: true}, nil
return reconcile.Result{requeueAfter: time.Duration(60) * time.Second}, nil
// err != nil
return reconcile.Result{}, fmt.Errorf("My custom error string")
Metadata
Metadata
Assignees
Labels
Denotes an issue that needs help from a contributor. Must meet "help wanted" guidelines.Categorizes issue or PR as related to documentation.Indicates that an issue or PR should not be auto-closed due to staleness.Important over the long term, but may not be staffed and/or may need multiple releases to complete.