blob: dce89ef86944169dbbc2327f3e5ed3cbfe1d9496 (
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
77
78
79
80
81
82
83
84
85
|
##############################################################################
# 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
##############################################################################
---
# yamllint disable rule:line-length
- name: add eth0 ip addresss
lineinfile:
dest: /etc/sysconfig/network-scripts/ifcfg-eth0
line: "IPADDR={{ ip_settings[inventory_hostname][\"mgmt\"][\"ip\"] }}"
- name: remove br-mgmt in ifcfg-eth0
lineinfile:
dest: /etc/sysconfig/network-scripts/ifcfg-eth0
regexp: "^BRIDGE=br-mgmt"
state: absent
- name: add eth0 netmask
lineinfile:
dest: /etc/sysconfig/network-scripts/ifcfg-eth0
line: "NETMASK=255.255.255.0"
- name: Disable default gw in eth0
lineinfile:
dest: /etc/sysconfig/network-scripts/ifcfg-eth0
line: "DEFROUTE=\"no\""
- name: generate ifcfg-external
template:
src: ifcfg-external.j2
dest: /etc/sysconfig/network-scripts/ifcfg-{{ intf_external }}
- name: generate ifcfg-storage
template:
src: ifcfg-storage.j2
dest: /etc/sysconfig/network-scripts/ifcfg-{{ intf_storage }}
- name: generate ifcfg-tenant
template:
src: ifcfg-tenant.j2
dest: /etc/sysconfig/network-scripts/ifcfg-{{ intf_tenant }}
# yamllint enable rule:line-length
- name: remove ifcfg-br-mgmt script
file:
path: /etc/sysconfig/network-scripts/ifcfg-br-mgmt
state: absent
- name: remove ifcfg-br-external script
file:
path: /etc/sysconfig/network-scripts/ifcfg-br-external
state: absent
- name: remove ifcfg-br-storage script
file:
path: /etc/sysconfig/network-scripts/ifcfg-br-storage
state: absent
- name: remove ifcfg-br-tenant script
file:
path: /etc/sysconfig/network-scripts/ifcfg-br-tenant
state: absent
- name: restart the network
shell: systemctl restart network
- name: fix mapping in compute
shell: |
{% set compute_mappings = [] %}
{% for key, value in compu_prv_mappings.iteritems() %}
{% set mapping = key + ":" + value["bridge"] %}
{% set _ = compute_mappings.append(mapping) %}
{% endfor %}
{% if compute_mappings | length != 0 %}
sed -i "s/^\(bridge_mappings\).*/\1 = {{ ','.join(compute_mappings) }}/g" \
/etc/neutron/plugins/ml2/openvswitch_agent.ini
{% else %}
sed -i "/bridge_mappings/d" /etc/neutron/plugins/ml2/openvswitch_agent.ini
{% endif %}
|