Merge "kolla: Set neutron_plugin_agent to OVN when it's enabled"

This commit is contained in:
Zuul 2021-09-20 14:08:03 +00:00 committed by Gerrit Code Review
commit 8ac29d67a6
2 changed files with 8 additions and 1 deletions

View File

@ -114,7 +114,7 @@ docker_custom_config: {{ kolla_docker_custom_config | to_nice_json | indent(2) }
#dns_address_family: "{% raw %}{{ network_address_family }}{% endraw %}"
# Valid options are [ openvswitch, linuxbridge ]
neutron_plugin_agent: "openvswitch"
neutron_plugin_agent: "{% if kolla_enable_ovn | default(False) | bool %}ovn{% else %}openvswitch{% endif %}"
# Valid options are [ internal, infoblox ]
#neutron_ipam_driver: "internal"

View File

@ -0,0 +1,7 @@
---
fixes:
- |
Setting `kolla_enable_ovn` in ``kolla.yml`` did not configure Neutron's
integration with OVN.
See `story 2009080 <https://storyboard.openstack.org/#!/story/2009080>`__
for details.