a114efa00c
This patch ensures that the linuxbridge/sriov agent files will have the QoS extension enabled if the deployer has enabled it. Closes-Bug: 1677632 Change-Id: I32edf772267e0a6e92a86979ceb4d24973750a73
15 lines
340 B
Django/Jinja
15 lines
340 B
Django/Jinja
# {{ ansible_managed }}
|
|
|
|
# Agent
|
|
[agent]
|
|
{% if 'qos' in neutron_plugin_base %}
|
|
extensions = qos
|
|
{% endif %}
|
|
|
|
[securitygroup]
|
|
firewall_driver = neutron.agent.firewall.NoopFirewallDriver
|
|
|
|
[sriov_nic]
|
|
physical_device_mappings = "{{ neutron_provider_networks.network_sriov_mappings }}"
|
|
exclude_devices = "{{ neutron_sriov_excluded_devices }}"
|