File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ nova_compute_virt_type: qemu
7
7
# Reduce the control plane's memory footprint by limiting the number of worker
8
8
# processes to one per-service.
9
9
openstack_service_workers : " 1"
10
+ openstack_service_rpc_workers : " 1"
10
11
11
12
glance_backend_ceph : " yes"
12
13
cinder_backend_ceph : " yes"
Original file line number Diff line number Diff line change 1
1
---
2
+ # Reduce the control plane's memory footprint by limiting the number of worker
3
+ # processes to two per-service when running in a VM.
4
+ openstack_service_workers : " {% raw %}{{ [ansible_facts.processor_vcpus, 2 if ansible_facts.virtualization_role == 'guest' else 5] | min }}{% endraw %}"
5
+ openstack_service_rpc_workers : " {% raw %}{{ [ansible_facts.processor_vcpus, 2 if ansible_facts.virtualization_role == 'guest' else 3] | min }}{% endraw %}"
6
+
2
7
# Glance Ceph configuration
3
8
glance_backend_ceph : " yes"
4
9
You can’t perform that action at this time.
0 commit comments