From 264ec7332c84617e95f2b7336dcee1a413bc7e6b Mon Sep 17 00:00:00 2001 From: Yifei Xue Date: Mon, 10 Jul 2017 23:10:14 +0800 Subject: Bug fix for physnet name in ODL The physnet name used in ODL should be the same the one used in those none odl scenarios. Change-Id: I5afc9196d8365b649eb088f29bac4f94d9d12d16 Signed-off-by: Yifei Xue --- plugins/odl_cluster/tasks/control-agents-2.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'plugins/odl_cluster/tasks/control-agents-2.yml') diff --git a/plugins/odl_cluster/tasks/control-agents-2.yml b/plugins/odl_cluster/tasks/control-agents-2.yml index b138dc38..f53a3ac8 100644 --- a/plugins/odl_cluster/tasks/control-agents-2.yml +++ b/plugins/odl_cluster/tasks/control-agents-2.yml @@ -43,7 +43,7 @@ - name: set external nic in openvswitch shell: | ovs-vsctl set Open_vSwitch $(ovs-vsctl show | head -n 1) \ - other_config:provider_mappings=physnet1:br-provider + other_config:provider_mappings=physnet:br-provider when: - odl_l3_agent == "Disable" - inventory_hostname not in groups['nova_compute'] @@ -51,14 +51,14 @@ - name: set external nic in openvswitch shell: | ovs-vsctl set Open_vSwitch $(ovs-vsctl show | head -n 1) \ - other_config:provider_mappings=physnet1:eth12 + other_config:provider_mappings=physnet:eth12 when: - odl_l3_agent == "Enable" - name: Set host OVS configurations command: | /openstack/venvs/neutron-15.1.4/bin/neutron-odl-ovs-hostconfig \ - --datapath_type=system --bridge_mappings=physnet1:br-provider + --datapath_type=system --bridge_mappings=physnet:br-provider when: - inventory_hostname not in groups['nova_compute'] - odl_l3_agent == "Disable" @@ -66,7 +66,7 @@ - name: Set host OVS configurations command: | /openstack/venvs/neutron-15.1.4/bin/neutron-odl-ovs-hostconfig - --datapath_type=system --bridge_mappings=physnet1:eth12 + --datapath_type=system --bridge_mappings=physnet:eth12 when: - inventory_hostname not in groups['nova_compute'] - odl_l3_agent == "Enable" @@ -81,7 +81,7 @@ - name: Set host OVS configurations command: | /openstack/venvs/neutron-15.1.4/bin/neutron-odl-ovs-hostconfig - --datapath_type=system --bridge_mappings=physnet1:eth12 + --datapath_type=system --bridge_mappings=physnet:eth12 when: - inventory_hostname in groups['nova_compute'] - odl_l3_agent == "Enable" -- cgit 1.2.3-korg