blob: d6304f8bc7ea53dc5202c5055bd83873d537b2f2 (
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
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
|
---
# file: tasks/main.yaml
- name: "Enable deb-src APT Repository"
ansible.builtin.apt_repository:
repo: "deb-src {{ packages_repo[ansible_distribution|lower][ansible_machine] }} noble main"
state: "present"
update_cache: true
tags:
- aws-enable-src-repo
- name: "Update Package Cache (APT)"
ansible.builtin.apt:
update_cache: true
cache_valid_time: 3600
when:
- ansible_distribution == 'Ubuntu'
tags:
- aws-enable-src-repo
- name: "Prerequisites"
ansible.builtin.package:
name: "{{ packages | flatten(levels=1) }}"
state: "latest"
tags:
- aws-inst-prerequisites
- name: "Load Kernel Modules By Default"
ansible.builtin.lineinfile:
path: "/etc/modules"
state: "present"
line: "{{ item }}"
with_items:
- "igb_uio"
- "vfio-pci"
tags:
- aws-load-kernel-modules
- name: "Add Kernel Modules Options (igb_uio)"
ansible.builtin.lineinfile:
path: "/etc/modprobe.d/igb_uio.conf"
state: "present"
line: "{{ item }}"
create: "yes"
with_items:
- "options igb_uio wc_activate=1"
tags:
- aws-load-kernel-modules
- name: "Add Kernel Modules Options (vfio-pci)"
ansible.builtin.lineinfile:
path: "/etc/modprobe.d/vfio-noiommu.conf"
state: "present"
line: "{{ item }}"
create: "yes"
with_items:
- "options vfio enable_unsafe_noiommu_mode=1"
tags:
- aws-load-kernel-modules
- name: "Kernel Parameters"
ansible.builtin.lineinfile:
path: "/etc/default/grub"
state: "present"
regexp: "^GRUB_CMDLINE_LINUX="
line: "GRUB_CMDLINE_LINUX=iommu=1 intel_iommu=on"
notify:
- "Update GRUB"
tags:
- perf-conf-grub
- meta: flush_handlers
- name: "Enable Password Login"
ansible.builtin.lineinfile:
dest: "/etc/ssh/sshd_config"
regexp: "^PasswordAuthentication no"
line: "PasswordAuthentication yes"
tags:
- conf-ssh
- name: "Enable Password Less sudo"
ansible.builtin.lineinfile:
dest: "/etc/ssh/sshd_config"
regexp: "^#PermitRootLogin prohibit-password"
line: "PermitRootLogin yes"
tags:
- conf-ssh
- name: "Recursively Delete Other Configs"
ansible.builtin.file:
path: "/etc/ssh/sshd_config.d"
state: "absent"
tags:
- conf-ssh
#- name: Get vfio-pci With WC Patcher
# ansible.builtin.get_url:
# url: "https://github.com/amzn/amzn-drivers/raw/master/userspace/dpdk/enav2-vfio-patch/get-vfio-with-wc.sh"
# dest: "/opt/get-vfio-with-wc.sh"
# mode: 0744
# tags:
# - aws-vfio-patch
#
#- name: Create vfio-pci Patch Directory
# ansible.builtin.file:
# path: "/opt/patches/"
# state: "directory"
# tags:
# - aws-vfio-patch
#
#- name: Get vfio-pci WC Patch
# ansible.builtin.get_url:
# url: "https://github.com/amzn/amzn-drivers/raw/master/userspace/dpdk/enav2-vfio-patch/patches/{{ item }}"
# dest: "/opt/patches/{{ item }}"
# mode: 0744
# with_items:
# - "linux-4.10-vfio-wc.patch"
# - "linux-5.8-vfio-wc.patch"
# - "linux-5.15-vfio-wc.patch"
# tags:
# - aws-vfio-patch
#
#- name: Copy vfio-pci WC Patch
# ansible.builtin.copy:
# src: "files/get-vfio-with-wc.sh"
# dest: "/opt"
# mode: 0744
# tags:
# - aws-vfio-patch
#
#- name: Compile vfio-pci With WC Patch
# ansible.builtin.shell: "/bin/bash /opt/get-vfio-with-wc.sh"
# environment:
# DEBIAN_FRONTEND: "noninteractive"
# TERM: "vt100"
# tags:
# - aws-vfio-patch
- name: "Adjust nr_hugepages"
ansible.builtin.sysctl:
name: "vm.nr_hugepages"
value: "8192"
state: "present"
sysctl_file: "/etc/sysctl.d/90-csit.conf"
reload: true
tags:
- aws-set-hugepages
- name: "Add User"
ansible.builtin.user:
append: true
createhome: true
groups: "admin,adm,sudo"
name: "testuser"
password: "$6$Y62lhMGJD8YNzmJn$H4DSqjrwFp5WN3tOvIrF.g/G2duOV76zXHAmaA/RU8jfT8H8sDumLQe/Q.EmI5pjPv7dzgI8j9BQPWes7efBK0"
shell: "/bin/bash"
state: "present"
tags:
- aws-user-add
- name: "sudoers admin"
ansible.builtin.lineinfile:
path: "/etc/sudoers"
state: "present"
regexp: "^%admin ALL="
line: "%admin ALL=(ALL) ALL"
validate: "/usr/sbin/visudo -cf %s"
tags:
- aws-sudoers
- name: "sudoers nopasswd"
ansible.builtin.lineinfile:
path: "/etc/sudoers"
state: "present"
regexp: "^%sudo"
line: "%sudo ALL=(ALL:ALL) NOPASSWD: ALL"
validate: "/usr/sbin/visudo -cf %s"
tags:
- aws-sudoers
- name: "sudoers nopasswd"
ansible.builtin.lineinfile:
path: "/etc/sudoers"
state: "present"
line: "%testuser ALL=(ALL) NOPASSWD: ALL"
validate: "/usr/sbin/visudo -cf %s"
tags:
- aws-sudoers
|