Merge "Fix set_overcloud_workers=False being ignored for >mitaka"

This commit is contained in:
Jenkins 2017-08-18 02:23:24 +00:00 committed by Gerrit Code Review
commit 92e924a875
1 changed files with 3 additions and 1 deletions

View File

@ -166,7 +166,9 @@
set_fact:
workers_args: >-
-e {{ overcloud_templates_path }}/environments/low-memory-usage.yaml
when: release not in ['mitaka', 'liberty']
when:
- release not in ['mitaka', 'liberty']
- set_overcloud_workers|bool
- name: Use KVM for Red Hat distro
set_fact: libvirt_args="--libvirt-type kvm"