Removed fuel from Genesis master since fuel has moved to repo fuel.
[genesis.git] / compass / deploy / ansible / roles / neutron-network / tasks / odl.yml
1 ---
2 - name: ovs set manager
3   command: ovs-vsctl set-manager tcp:{{ controller }}:6640
4
5 - name: get ovs uuid
6   shell: ovs-vsctl get Open_vSwitch . _uuid
7   register: ovs_uuid
8
9 - name: set bridge_mappings
10   command: ovs-vsctl set Open_vSwitch {{ ovs_uuid.stdout }} other_config:bridge_mappings=physnet1:{{ INTERFACE_NAME }}
11
12 - name: set local ip
13   command: ovs-vsctl set Open_vSwitch {{ ovs_uuid.stdout }} other_config:local_ip={{ internal_ip }}