Skip to content
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
11 changes: 10 additions & 1 deletion docs/compute/node_overcommit.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,16 @@ VMI in case the node gets under memory pressure.
Implicit memory overcommit is disabled by default. This means that when
memory request is not specified, it is set to match
`spec.domain.memory.guest`. However, it can be enabled using
`spec.configuration.developerConfiguration.memoryOvercommit` in the `kubevirt` CR. For example, by setting

```yaml
...
spec:
configuration:
developerConfiguration:
memoryOvercommit: 150
```

in the `kubevirt` CR. For example, by setting
`memoryOvercommit: "150"` we define that when memory request is not
explicitly set, it will be implicitly set to achieve memory overcommit
of 150%. For instance, when `spec.domain.memory.guest: 3072M`, memory
Expand Down