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
77# Reduce the control plane's memory footprint by limiting the number of worker
88# processes to one per-service.
99openstack_service_workers : " 1"
10+ openstack_service_rpc_workers : " 1"
1011
1112glance_backend_ceph : " yes"
1213cinder_backend_ceph : " yes"
Original file line number Diff line number Diff line change 11---
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+
27# Glance Ceph configuration
38glance_backend_ceph : " yes"
49
You can’t perform that action at this time.
0 commit comments