blob: 726cb5458ead1a6d742c6854ea588584b946c4f0 (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
|
#############################################################################
# Copyright (c) 2017 HUAWEI TECHNOLOGIES CO.,LTD and others.
#
# All rights reserved. This program and the accompanying materials
# are made available under the terms of the Apache License, Version 2.0
# which accompanies this distribution, and is available at
# http://www.apache.org/licenses/LICENSE-2.0
#############################################################################
---
- include_vars: "{{ ansible_os_family }}.yml"
- name: stop neutron-openvswitch-agent
service:
name: neutron-openvswitch-agent
state: stopped
- name: restart openvswitch service
service:
name: "{{ ovs_service }}"
state: restarted
- name: remove tunnel_types when vlan
lineinfile:
dest: /etc/neutron/plugins/ml2/openvswitch_agent.ini
state: absent
regexp: '^tunnel_types'
when:
- tenant_net_info["type"] == "vlan"
notify:
- restart neutron-openvswitch-agent
- name: create controller bridges
openvswitch_bridge:
bridge: "{{ item['name'] }}"
state: present
with_items:
- "{{ provider_net_mappings }}"
when:
- controller in item["role"]
notify:
- restart neutron-openvswitch-agent
- name: create controller bridge ports
openvswitch_port:
bridge: "{{ item['name'] }}"
port: "{{ item['interface'] }}"
state: present
with_items:
- "{{ provider_net_mappings }}"
when:
- controller in item["role"]
- name: configure interfaces ubuntu
template:
src: controller.j2
dest: /etc/network/interfaces
notify:
- restart network service
- name: start neutron-openvswitch-agent
service:
name: neutron-openvswitch-agent
state: restarted
- name: update keepalived
replace:
dest: /etc/keepalived/keepalived.conf
regexp: 'br-external'
replace: 'br-provider'
- meta: flush_handlers
- name: restart keepalived
service:
name: keepalived
state: restarted
|