diff options
Diffstat (limited to 'plugins/odl_cluster/tasks/control-agents-2.yml')
-rw-r--r-- | plugins/odl_cluster/tasks/control-agents-2.yml | 10 |
1 files changed, 5 insertions, 5 deletions
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" |