# Functions
Retry executes the provided condition func repeatedly, retrying with exponential backoff if the condition func returns an error.
RetryContined does the same thing with Retry() except that it will keep trying if the error returned by condition is within the expected by continued function nolint.
RetryIgnored does the same thing with Retry() but it will stop retrying when conidtion returns an error which will be ignored if it is within the expected.
RetryOn does the same thing with Retry() except that it will keep trying if the error returned by condition is within the expected by continueOn function
Deprecated: Use RetryContined nolint.
# Variables
DefaultBackoff is the recommended backoff for a conflict where a client may be attempting to make an unrelated modification to a resource under active management by one or more controllers.
DefaultRetry is the recommended retry for a conflict where multiple clients are making changes to the same resource.
ErrWaitTimeout is returned when the condition exited without success.
# Type aliases
Backoff holds parameters applied to a Backoff function.