blob: 84358bf8633dcd0e26636ad556c9163a133dd1e7 (
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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
|
---
# file: roles/common/tasks/main.yaml
- name: Ensure the system exists in Cobbler
cobbler_system:
host: '{{ cobbler_hostname }}'
port: 60080
interfaces:
br1:
ipaddress: '{{ ansible_default_ipv4.address }}'
macaddress: '{{ ansible_default_ipv4.macaddress }}'
name: '{{ hostname }}'
password: '{{ cobbler_password }}'
properties:
hostname: '{{ hostname }}'
gateway: '{{ ansible_default_ipv4.gateway }}'
profile: '{{ cobbler_profile }}'
name_servers: '{{ name_servers }}'
name_servers_search: '{{ name_servers_search }}'
kickstart: '/var/lib/cobbler/kickstarts/{{ cobbler_profile }}.seed'
kernel_options: '"interface={{ ansible_default_ipv4.interface }}"'
netboot_enabled: yes
username: '{{ cobbler_username }}'
use_ssl: no
validate_certs: no
when: provision_enabled
delegate_to: localhost
tags: cobbler-include
- name: Commit Cobbler changes
cobbler_sync:
host: '{{ cobbler_hostname }}'
port: 60080
password: '{{ cobbler_password }}'
username: '{{ cobbler_username }}'
use_ssl: no
validate_certs: no
run_once: yes
when: provision_enabled
delegate_to: localhost
register: __included_in_cobbler
notify:
- 'Boot from network'
- 'Reboot server'
tags: cobbler-include
- meta: flush_handlers
- name: Copy netplan network config file
template:
src: 'files/netplan_config'
dest: '/etc/netplan/01-netcfg.yaml'
owner: 'root'
group: 'root'
mode: '0644'
tags: copy-interface-file
- name: Add permanent proxy settings
lineinfile:
path: '/etc/environment'
state: 'present'
line: '{{ item.key }}={{ item.value }}'
with_dict: '{{ proxy_env }}'
when: proxy_env is defined
- name: Install distribution - release - machine prerequisites
include_tasks: '{{ ansible_distribution|lower }}_{{ ansible_distribution_release }}.yaml'
tags: [ install-csit-dependencies, copy-apt-sources ]
- name: Install CSIT PIP requirements
pip:
name:
- 'ecdsa==0.13.3'
- 'paramiko==2.6.0'
- 'pycrypto==2.6.1'
- 'pypcap==1.2.3'
- 'PyYAML==5.1.1'
- 'requests==2.22.0'
- 'robotframework==3.1.2'
- 'scapy==2.4.3'
- 'scp==0.13.2'
- 'ansible==2.7.8'
- 'dill==0.2.8.2'
- 'numpy==1.17.3'
- 'hdrhistogram==0.6.1'
- 'pandas==0.25.3'
- 'plotly==4.1.1'
- 'PTable==0.9.2'
- 'Sphinx==2.2.1'
- 'sphinx-rtd-theme==0.4.0'
- 'sphinxcontrib-programoutput==0.15'
- 'sphinxcontrib-robotdoc==0.11.0'
- 'alabaster==0.7.12'
- 'Babel==2.7.0'
- 'bcrypt==3.1.7'
- 'certifi==2019.9.11'
- 'cffi==1.13.2'
- 'chardet==3.0.4'
- 'cryptography==2.8'
- 'docutils==0.15.2'
- 'future==0.18.2'
- 'idna==2.8'
- 'imagesize==1.1.0'
- 'Jinja2==2.10.3'
- 'MarkupSafe==1.1.1'
- 'packaging==19.2'
- 'pbr==5.4.3'
- 'pycparser==2.19'
- 'Pygments==2.4.2'
- 'PyNaCl==1.3.0'
- 'pyparsing==2.4.4'
- 'python-dateutil==2.8.1'
- 'pytz==2019.3'
- 'retrying==1.3.3'
- 'six==1.13.0'
- 'snowballstemmer==2.0.0'
- 'sphinxcontrib-applehelp==1.0.1'
- 'sphinxcontrib-devhelp==1.0.1'
- 'sphinxcontrib-htmlhelp==1.0.2'
- 'sphinxcontrib-jsmath==1.0.1'
- 'sphinxcontrib-qthelp==1.0.2'
- 'sphinxcontrib-serializinghtml==1.1.3'
- 'urllib3==1.25.6'
tags: install-pip
- name: Install CSIT PIP requirements - SciPy workaround
pip:
name:
- 'scipy==1.1.0'
tags: install-pip
- name: Set sudoers admin
lineinfile:
path: '/etc/sudoers'
state: 'present'
regexp: '^%admin ALL='
line: '%admin ALL=(ALL) ALL'
validate: '/usr/sbin/visudo -cf %s'
tags: set-sudoers
- name: Set sudoers sudo
lineinfile:
path: '/etc/sudoers'
state: 'present'
regexp: '^%sudo'
line: '%sudo ALL=(ALL:ALL) NOPASSWD: ALL'
validate: '/usr/sbin/visudo -cf %s'
tags: set-sudoers
- name: Copy grub file
template:
src: 'files/grub_{{ ansible_machine }}'
dest: '/etc/default/grub'
owner: 'root'
group: 'root'
mode: '644'
notify:
- 'Update GRUB'
- 'Reboot server'
tags: copy-grub
- name: Mellanox Install - Driver
import_tasks: mellanox.yaml
tags: mellanox-install
- meta: flush_handlers
|