Skip to content

Commit c8216df

Browse files
committed
docs: wip
1 parent 7d38cc1 commit c8216df

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

docs/documentation/patterns-best-practices.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,12 @@ retries of a reconciliation can happen naturally in operators, the implementatio
3535
needs to be idempotent. Luckily, since operators are usually managing already declarative resources, this is trivial
3636
to do in most cases.
3737

38-
### Sync of Async Way of Resource Handling
38+
### Sync or Async Way of Resource Handling
39+
40+
In an implementation of reconciliation there can be a point when reconciler needs to wait a non-insignificant amount
41+
of time while a resource gets up and running. For example, reconciler would do some additional step only if a Pod is ready
42+
to receive requests. This problem can in two ways synchronously or asynchronously.
43+
3944

4045
## Why to Have Automated Retries?
4146

0 commit comments

Comments
 (0)