File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed
docs/guides/configuration-guide/openstack Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -27,3 +27,26 @@ cat /sys/module/kvm_intel/parameters/nested
27
27
Y
28
28
docker restart nova_libvirt
29
29
```
30
+
31
+ ## Reserve compute node resources
32
+
33
+ How many resources you want to reserve on a compute node depends very much on which additional
34
+ services are running on the compute node.
35
+
36
+ ### Host memory
37
+
38
+ * https://docs.openstack.org/nova/latest/configuration/config.html#DEFAULT.reserved_host_memory_mb
39
+
40
+ ``` ini title="environments/kolla/files/overlays/nova/nova-compute.conf"
41
+ [DEFAULT]
42
+ reserved_host_memory_mb = 32768
43
+ ```
44
+
45
+ ### Host CPUs
46
+
47
+ * https://docs.openstack.org/nova/latest/configuration/config.html#DEFAULT.reserved_host_cpus
48
+
49
+ ``` ini title="environments/kolla/files/overlays/nova/nova-compute.conf"
50
+ [DEFAULT]
51
+ reserved_host_cpus = 4
52
+ ```
You can’t perform that action at this time.
0 commit comments