summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorPaul Vinciguerra <pvinci@vinciconsulting.com>2020-03-02 16:10:54 -0500
committerDave Wallace <dwallacelf@gmail.com>2020-03-27 16:12:45 +0000
commit491741a40443a66edd497bb15007198404500352 (patch)
treea66d1af38111b0b70d01ea3a8adb7580976c42f9 /build
parent5ac392dc41c1d42d88f3790d2a6aa26427affc7a (diff)
docs ethernet: add docs for ethernet Section
Type: docs Change-Id: I6ad92b35df3e0fecb1334511625eacf3e3d8925f Signed-off-by: Paul Vinciguerra <pvinci@vinciconsulting.com>
Diffstat (limited to 'build')
0 files changed, 0 insertions, 0 deletions
'rls2210'>rls2210 Integration testsGrokmirror user
aboutsummaryrefslogtreecommitdiffstats
path: root/fdio.infra.ansible/roles/azure/tasks/main.yaml
blob: c8d72475d807cfbaa8e9b63a89156e8d2c0c8e42 (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
---
# file: roles/azure/tasks/main.yaml

- name: Azure - Load Kernel Modules By Default
  lineinfile:
    path: "/etc/modules"
    state: "present"
    line: "{{ item }}"
  with_items:
    - "vfio-pci"
    - "ib_uverbs"
    - "mlx4_ib"
    - "mlx5_ib"
  notify: "Azure - Reload systemd-modules"
  tags:
    - load-kernel-modules

- name: Azure - Performance Tuning - Adjust nr_hugepages
  sysctl:
    name: "vm.nr_hugepages"
    value: "8192"
    state: "present"
    sysctl_file: "/etc/sysctl.d/90-csit.conf"
    reload: "yes"
  tags:
    - set-sysctl

- name: Azure - prevent interface renaming
  copy:
    src: "files/10-dtap.link"
    dest: "/etc/systemd/network/"
    owner: "root"
    group: "root"
    mode: "0644"
  notify:
    - "Reboot server"
  tags:
    - prevent-interface-renaming