From 24103ca169793292964bb86f742b8e08977804d7 Mon Sep 17 00:00:00 2001 From: Mohammed Naser Date: Fri, 19 Oct 2018 15:35:35 +0200 Subject: [PATCH] ovs: force to secure fail mode by default The upstream Ansible module seems to pass through a 'None' when creating the port with safe_mode missing which breaks. This patch forces it to the Neutron required mode of 'secure'. Change-Id: I5a171ee83edcfa152b944e0bc39a90f2a8546916 --- tasks/providers/ovs_config.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/tasks/providers/ovs_config.yml b/tasks/providers/ovs_config.yml index 468088c1..0def5ed9 100644 --- a/tasks/providers/ovs_config.yml +++ b/tasks/providers/ovs_config.yml @@ -17,6 +17,7 @@ - name: Setup External Network Provider Bridge openvswitch_bridge: bridge: "{{ neutron_provider_networks.network_mappings.split(':')[1] }}" + fail_mode: secure state: present when: - neutron_services['neutron-l3-agent']['group'] in group_names