Merge "update pci_passthrough template variables"

This commit is contained in:
Zuul 2019-02-19 20:35:43 +00:00 committed by Gerrit Code Review
commit f826f9c7bc

View File

@ -352,12 +352,12 @@ enabled_vgpu_types = {{ enabled_vgpu_types | join(',') }}
[pci] [pci]
{% if nova_pci_passthrough_whitelist %} {% if nova_pci_passthrough_whitelist %}
# White list of PCI devices available to VMs. # White list of PCI devices available to VMs.
passthrough_whitelist = "{{ nova_pci_passthrough_whitelist }}" passthrough_whitelist = {{ nova_pci_passthrough_whitelist }}
{% endif %} {% endif %}
{% if nova_pci_alias %} {% if nova_pci_alias %}
# PCI Alias # PCI Alias
{% for item in nova_pci_alias %} {% for item in nova_pci_alias %}
alias = "{{item}}" alias = {{item}}
{% endfor %} {% endfor %}
{% endif %} {% endif %}
{% endif %} {% endif %}