blob: a2b449ce599d3601b22b61dee73672e8dba41c26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
- name: ovs set manager
command: ovs-vsctl set-manager tcp:{{ controller }}:6640
- name: get ovs uuid
shell: ovs-vsctl get Open_vSwitch . _uuid
register: ovs_uuid
- name: set bridge_mappings
command: ovs-vsctl set Open_vSwitch {{ ovs_uuid.stdout }} other_config:bridge_mappings=physnet1:{{ INTERFACE_NAME }}
- name: set local ip
command: ovs-vsctl set Open_vSwitch {{ ovs_uuid.stdout }} other_config:local_ip={{ internal_ip }}
|