Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

refactor(docs): add components placement table #555

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 22 additions & 0 deletions docs/internal/components_placement.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
## 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.
Loading