From 6b4de9adfda79a1ef08b0d435db07969ed077108 Mon Sep 17 00:00:00 2001 From: Mohammed Naser Date: Tue, 30 Oct 2018 17:00:07 +0100 Subject: [PATCH] Plug port on OVS agents instead of L3 agents only It is possible that your Open vSwitch agents could be plumbing other things such as bridged networking directly on the computes or another network on VLANs directly on computes. This patch makes it so that the bridges are configured on any open vswitch agent rather than L3 agents only. Change-Id: I5e2f9399f575b11d9167147bde23d141a4e3077e --- tasks/providers/ovs_config.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tasks/providers/ovs_config.yml b/tasks/providers/ovs_config.yml index 0def5ed9..b6958fd3 100644 --- a/tasks/providers/ovs_config.yml +++ b/tasks/providers/ovs_config.yml @@ -20,7 +20,7 @@ fail_mode: secure state: present when: - - neutron_services['neutron-l3-agent']['group'] in group_names + - neutron_services['neutron-openvswitch-agent']['group'] in group_names - neutron_plugin_type == 'ml2.ovs' - neutron_provider_networks.network_mappings is defined @@ -30,7 +30,7 @@ port: "{{ neutron_provider_networks.network_interface }}" state: present when: - - neutron_services['neutron-l3-agent']['group'] in group_names + - neutron_services['neutron-openvswitch-agent']['group'] in group_names - neutron_plugin_type == 'ml2.ovs' - neutron_provider_networks.network_mappings is defined - neutron_provider_networks.network_interface is defined