Remove linked libs when using ironic compute

The ironic compute hosts do not need to have linked libs within the
venv. This change sets the linked libs list to null when the compute
host virt type is "ironic".

Change-Id: Ia956e3012555ea79fdf70a700ae6506c506c6db3
Signed-off-by: cloudnull <kevin@cloudnull.com>
This commit is contained in:
cloudnull 2019-03-26 14:18:53 -05:00
parent 21703a6dfd
commit 13c3ad4325
No known key found for this signature in database
GPG Key ID: 9443251A787B9FB3
1 changed files with 6 additions and 0 deletions

View File

@ -50,3 +50,9 @@
nova_virt_type: "qemu"
when:
- nova_virt_type is not defined
- name: Remove lib linking for kvm with ironic
set_fact:
nova_compute_kvm_packages_to_symlink: []
when:
- nova_virt_type == 'ironic'