46a22cccac
If network_mappings is defined but empty, we should treat it as though it is undefined. Otherwise the template tasks will fail due to there being no "network_mappings[0]". We should add a test case for this once the fix is backported to the stable/ocata branch, to avoid a regression in future. Currently this would fail the upgrade gate due to this bug coming up in stable/ocata branch. Change-Id: Ifd0d2c23bb65225d27c74360ff521b84676b7a81 Closes-Bug: #1528307
24 lines
788 B
Django/Jinja
24 lines
788 B
Django/Jinja
# {{ ansible_managed }}
|
|
|
|
[ovs]
|
|
{% if neutron_tunnel_types | length > 0 %}
|
|
local_ip = {{ neutron_local_ip }}
|
|
{% endif %}
|
|
{% if neutron_provider_networks.network_mappings is defined and ((neutron_provider_networks.network_mappings | length) > 0) %}
|
|
bridge_mappings = {{ neutron_provider_networks.network_mappings }}
|
|
{% endif %}
|
|
|
|
[agent]
|
|
l2_population = {{ neutron_plugins[neutron_plugin_type].l2_population }}
|
|
tunnel_types = {{ neutron_tunnel_types }}
|
|
enable_distributed_routing = {{ neutron_plugins[neutron_plugin_type].router_distributed | default('False') }}
|
|
{% if 'qos' in neutron_plugin_base %}
|
|
extensions = qos
|
|
{% endif %}
|
|
|
|
# Security groups
|
|
[securitygroup]
|
|
firewall_driver = {{ neutron_plugins[neutron_plugin_type].driver_firewall }}
|
|
enable_security_group = True
|
|
enable_ipset = True
|