Skip to content

Commit

Permalink
Reserve compute node resources (#239)
Browse files Browse the repository at this point in the history
Closes osism/issues#799

Signed-off-by: Christian Berendt <[email protected]>
  • Loading branch information
berendt authored Dec 18, 2023
1 parent c85d073 commit bcb8a07
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions docs/guides/configuration-guide/openstack/nova.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,3 +27,26 @@ cat /sys/module/kvm_intel/parameters/nested
Y
docker restart nova_libvirt
```

## Reserve compute node resources

How many resources you want to reserve on a compute node depends very much on which additional
services are running on the compute node.

### Host memory

* https://docs.openstack.org/nova/latest/configuration/config.html#DEFAULT.reserved_host_memory_mb

```ini title="environments/kolla/files/overlays/nova/nova-compute.conf"
[DEFAULT]
reserved_host_memory_mb = 32768
```

### Host CPUs

* https://docs.openstack.org/nova/latest/configuration/config.html#DEFAULT.reserved_host_cpus

```ini title="environments/kolla/files/overlays/nova/nova-compute.conf"
[DEFAULT]
reserved_host_cpus = 4
```

0 comments on commit bcb8a07

Please sign in to comment.