From 1f1d9b630b0aeb953e56e0f0562e6db64a0351e1 Mon Sep 17 00:00:00 2001 From: "jaegoo.kim" Date: Thu, 24 Mar 2022 17:16:17 +0900 Subject: [PATCH] fix architecture-and-internals document --- docs/documentation/architecture-and-internals.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/documentation/architecture-and-internals.md b/docs/documentation/architecture-and-internals.md index 7163824a3d..5319608e09 100644 --- a/docs/documentation/architecture-and-internals.md +++ b/docs/documentation/architecture-and-internals.md @@ -44,7 +44,7 @@ A typical workflows looks like following: 2. In the event processor the related `CustomResource` is read from the cache based on the `ResourceID` in the event. 3. If there is no other execution running for the custom resource, an execution is submitted for the executor (thread pool) . -4. Executor call EventDispatcher what decides which method to execute of the reconciler. Let's say in this case it +4. Executor calls ReconcilerDispatcher which decides which method to execute of the reconciler. Let's say in this case it was `reconcile(...)` 5. After reconciler execution the Dispatcher calls Kubernetes API server, since the `reconcile` method returned with `UpdateControl.updateStatus(...)` result.