-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor(docs): add components placement table (#555)
Signed-off-by: Ivan Mikheykin <[email protected]>
- Loading branch information
Showing
1 changed file
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
## Placement strategies | ||
|
||
| Component | nodeSelector strategy | tolerations strategy | Specifics | | ||
|---------------------------|-----------------------|----------------------|--------------------------------------------| | ||
| virt-api | master | any-node | -> ApiService, webhooks | | ||
| virt-operator | master | any-node | -> system/system | | ||
| cdi-apiserver | master | any-node | ApiService, webhooks | | ||
| virtualization-controller | master | any-node | validationwebhooks | | ||
| virtualization-api | master | any-node | ApiService | | ||
| virt-controller | system | system | | | ||
| cdi-deployment | system | system | strategy set with infra settings in config | | ||
| cdi-operator | system | system | | | ||
| dvcr | system | system | | | ||
| virt-handler | | any-node | | | ||
| vm-route-forge | | any-node | (should be equal to virt-handler) | | ||
|
||
|
||
**master + any-node** - Schedule to control-plane nodes. | ||
|
||
**system + system** - Schedule to first matching node: NodeGroup/virtualization, NodeGroup/system and then control-plane. | ||
|
||
**any-node** - Schedule to any node, including control-plane. | ||
|
||
TODO d8 helm templates adds HA specifics, research and add them here. | ||
|
||
TODO remove NodeGroup/virtualization when removed from helm templates. | ||
|
||
TODO add more explanation on why these strategies was choosen |