blob: bc2f53d7343c85cd0f5910dd8f2f7eb422e78e79 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
---
- name: install crudini
package:
name: crudini
state: latest
- name: install networking-odl
pip:
name: networking-odl
virtualenv: /openstack/venvs/neutron-{{ os_ver }}
- name: install neutron-lib
pip:
name: neutron-lib
version: 1.14.0
virtualenv: /openstack/venvs/neutron-{{ os_ver }}
- name: configure vsctl for dhcp agent
shell: |
crudini --set /etc/neutron/dhcp_agent.ini OVS \
ovsdb_interface vsctl;
when:
- inventory_hostname not in groups['nova_compute']
- name: configure vsctl for l3 agent
shell: |
crudini --set /etc/neutron/l3_agent.ini OVS \
ovsdb_interface vsctl;
when: odl_l3_agent == "Disable" and inventory_hostname not in groups['nova_compute']
- name: stop neutron l3 agent
service: name=neutron-l3-agent state=stopped enabled=no
when: odl_l3_agent == "Enable" and inventory_hostname not in groups['nova_compute']
- name: shut down and disable Neutron's openvswitch agent services
service: name={{ service_ovs_agent_name }} state=stopped enabled=no
- name: Stop the Open vSwitch service and clear existing OVSDB
shell: >
service {{ service_ovs_name }} stop ;
rm -rf /var/log/openvswitch/* ;
rm -rf /etc/openvswitch/conf.db ;
service {{ service_ovs_name }} start ;
|