From 3e460676b32b4b3b8d210fae6c6e3f7bb0a2338a Mon Sep 17 00:00:00 2001 From: Mark Goddard Date: Fri, 8 Sep 2017 16:08:33 +0000 Subject: [PATCH] Use hosts in the network group for default NGS trunk ports Neutron network services are now mapped to hosts in the network group, so it is these hosts that should be added as trunk ports to VLAN networks by the networking-generic-switch neutron ML2 mechanism driver, rather than the controllers. --- ansible/group_vars/all/neutron | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ansible/group_vars/all/neutron b/ansible/group_vars/all/neutron index 7a987c8db..528e10049 100644 --- a/ansible/group_vars/all/neutron +++ b/ansible/group_vars/all/neutron @@ -58,4 +58,4 @@ kolla_neutron_ml2_generic_switch_hosts: [] # These hosts will be matched against the description fields in the # switch_interface_config variable for each switch to determine which # interfaces should be configured. -kolla_neutron_ml2_generic_switch_trunk_port_hosts: "{{ groups['controllers'] }}" +kolla_neutron_ml2_generic_switch_trunk_port_hosts: "{{ groups['network'] }}"