blob: 4c6d24651ab984754a59078c398622d73019ae52 (
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
|
##############################################################################
# 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
##############################################################################
---
- name: make nfs dircetory
file: "dest=/images mode=0777 state=directory"
- name: configure service
shell: "echo 'nfs 2049/tcp' >> /etc/services; \
echo 'nfs 2049/udp' >> /etc/services"
# yamllint disable rule:line-length
- name: generate ifcfg-if.vxlan
template:
src: ifcfg-if.vxlan
dest: /etc/sysconfig/network-scripts/ifcfg-{{sys_intf_mappings["mgmt"]["interface"]}}.{{sys_intf_mappings["mgmt"]["vlan_tag"]}}
- name: generate ifcfg-if.storage
template:
src: ifcfg-if.storage
dest: /etc/sysconfig/network-scripts/ifcfg-{{sys_intf_mappings["storage"]["interface"]}}.{{sys_intf_mappings["storage"]["vlan_tag"]}}
- name: add br-vlan to interface script
lineinfile:
dest: /etc/sysconfig/network-scripts/ifcfg-{{ network_cfg["provider_net_mappings"][0]["interface"] }}
line: "BRIDGE=br-vlan"
- name: remove eth0 ip addresss
lineinfile:
dest: /etc/sysconfig/network-scripts/ifcfg-eth0
regexp: "^IPADDR=*"
state: absent
- name: remove eth0 netmask
lineinfile:
dest: /etc/sysconfig/network-scripts/ifcfg-eth0
regexp: "^NETMASK=*"
state: absent
- name: add br-mgmt to eth0 script
lineinfile:
dest: /etc/sysconfig/network-scripts/ifcfg-eth0
line: "BRIDGE=br-mgmt"
- name: add br-vlan to interface script
lineinfile:
dest: /etc/sysconfig/network-scripts/ifcfg-{{sys_intf_mappings["storage"]["interface"]}}.{{sys_intf_mappings["storage"]["vlan_tag"]}}
line: "BRIDGE=br-storage"
- name: add br-vxlan to interface script
lineinfile:
dest: /etc/sysconfig/network-scripts/ifcfg-{{sys_intf_mappings["mgmt"]["interface"]}}.{{sys_intf_mappings["mgmt"]["vlan_tag"]}}
line: "BRIDGE=br-vxlan"
# yamllint enable rule:line-length
- name: generate ifcfg-br-mgmt script
template:
src: ifcfg-br-mgmt
dest: /etc/sysconfig/network-scripts/
- name: generate ifcfg-br-vlan script
template:
src: ifcfg-br-vlan
dest: /etc/sysconfig/network-scripts/
- name: generate ifcfg-br-storage script
template:
src: ifcfg-br-storage
dest: /etc/sysconfig/network-scripts/
- name: generate ifcfg-br-vxlan script
template:
src: ifcfg-br-vxlan
dest: /etc/sysconfig/network-scripts/
- name: restart the network
shell: systemctl restart network
- name: Install apt packages
yum:
pkg: "{{item}}"
state: "present"
with_items:
- nfs-utils
- rpcbind
- name: configure NFS
template:
src: exports
dest: /etc/exports
- name: exportfs
shell: exportfs -r
- name: start nfs
shell: |
service rpcbind start;
service nfs start;
chkconfig rpcbind on;
chkconfig nfs on;
|