Merge "Change neutron-ovs-agent deploy only with manila generic backend" into stable/train

This commit is contained in:
Zuul 2020-06-26 20:29:35 +00:00 committed by Gerrit Code Review
commit 0df65c4aaf
3 changed files with 10 additions and 3 deletions

View File

@ -35,7 +35,7 @@ neutron_services:
host_in_groups: >-
{{
( (inventory_hostname in groups['compute'] and nova_compute_virt_type != 'xenapi')
or (enable_manila | bool and inventory_hostname in groups['manila-share'])
or (enable_manila_backend_generic | bool and inventory_hostname in groups['manila-share'])
or inventory_hostname in groups['neutron-dhcp-agent']
or inventory_hostname in groups['neutron-l3-agent']
or inventory_hostname in groups['neutron-metadata-agent']

View File

@ -10,7 +10,7 @@ openvswitch_services:
host_in_groups: >-
{{
inventory_hostname in groups['compute']
or (enable_manila | bool and inventory_hostname in groups['manila-share'])
or (enable_manila_backend_generic | bool and inventory_hostname in groups['manila-share'])
or inventory_hostname in groups['neutron-dhcp-agent']
or inventory_hostname in groups['neutron-l3-agent']
or inventory_hostname in groups['neutron-metadata-agent']
@ -25,7 +25,7 @@ openvswitch_services:
host_in_groups: >-
{{
inventory_hostname in groups['compute']
or (enable_manila | bool and inventory_hostname in groups['manila-share'])
or (enable_manila_backend_generic | bool and inventory_hostname in groups['manila-share'])
or inventory_hostname in groups['neutron-dhcp-agent']
or inventory_hostname in groups['neutron-l3-agent']
or inventory_hostname in groups['neutron-metadata-agent']

View File

@ -0,0 +1,7 @@
---
fixes:
- |
Fixes an issue with Manila deployment starting ``openvswitch`` and
``neutron-openvswitch-agent`` containers when
``enable_manila_backend_generic`` was set to ``False``.
`LP#1884939 <https://bugs.launchpad.net/kolla-ansible/+bug/1884939>`__