Change workers to be static when using kubernates
When orchestration engine is Kubernates, ansible_processor_vcpus is not defined. This patch changes workers to be static when using kubernates Change-Id: I4d77b2e48ea24c4ca8b86ec5b7e6029c054b247a Closes-Bug: #1609206
This commit is contained in:
parent
5ce4de6b2b
commit
046f739d1b
@ -185,7 +185,7 @@ openstack_logging_debug: "False"
|
||||
|
||||
openstack_region_name: "RegionOne"
|
||||
|
||||
openstack_service_workers: "{{ [ansible_processor_vcpus, 5]|min }}"
|
||||
openstack_service_workers: "{{ [ansible_processor_vcpus, 5]|min if orchestration_engine == 'ANSIBLE' else '1'}}"
|
||||
|
||||
# Optionally allow Kolla to set sysctl values
|
||||
set_sysctl: "yes"
|
||||
|
Loading…
x
Reference in New Issue
Block a user