aboutsummaryrefslogtreecommitdiffstats
path: root/fdio.infra.ansible/roles/vpp_device/tasks/main.yaml
blob: 44505d3065a958f8cc761067e8e364d798b27a56 (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
---
# file: tasks/main.yaml

- name: "Load Kernel Modules On Startup (vfio-pci)"
  ansible.builtin.lineinfile:
    path: "/etc/modules"
    state: "present"
    line: "{{ item }}"
  with_items:
    - "vfio-pci"
  tags:
    - load-kernel-modules

- name: "Disable IPv6 Router Advertisement"
  ansible.builtin.sysctl:
    name: "net.ipv6.conf.default.accept_ra"
    value: "0"
    state: "present"
    sysctl_file: "/etc/sysctl.d/90-csit.conf"
    reload: "yes"
  tags:
    - set-sysctl

- name: "Disable IPv6 Router Advertisement"
  ansible.builtin.sysctl:
    name: "net.ipv6.conf.all.accept_ra"
    value: "0"
    state: "present"
    sysctl_file: "/etc/sysctl.d/90-csit.conf"
    reload: "yes"
  tags:
    - set-sysctl

- name: "Disable IPv6 MLDv1 interval"
  ansible.builtin.sysctl:
    name: "net.ipv6.conf.all.mldv1_unsolicited_report_interval"
    value: "0"
    state: "present"
    sysctl_file: "/etc/sysctl.d/90-csit.conf"
    reload: "yes"
  tags:
    - set-sysctl

- name: "Disable IPv6 MLDv2 interval"
  ansible.builtin.sysctl:
    name: "net.ipv6.conf.all.mldv2_unsolicited_report_interval"
    value: "0"
    state: "present"
    sysctl_file: "/etc/sysctl.d/90-csit.conf"
    reload: "yes"
  tags:
    - set-sysctl

- name: "Disable IPv6 Autoconf"
  ansible.builtin.sysctl:
    name: "net.ipv6.conf.all.autoconf"
    value: "0"
    state: "present"
    sysctl_file: "/etc/sysctl.d/90-csit.conf"
    reload: "yes"
  tags:
    - set-sysctl

- name: "Disable IPv6 MC Forwarding"
  ansible.builtin.sysctl:
    name: "net.ipv6.conf.all.mc_forwarding"
    value: "0"
    state: "present"
    sysctl_file: "/etc/sysctl.d/90-csit.conf"
    reload: "yes"
  tags:
    - set-sysctl

- name: "Copy csit-initialize-vfs.sh"
  ansible.builtin.copy:
    src: "files/csit-initialize-vfs.sh"
    dest: "/usr/local/bin/"
    owner: "root"
    group: "root"
    mode: 0744
  tags:
    - copy-vf-script

- name: "Copy csit-initialize-vfs-data.sh"
  ansible.builtin.copy:
    src: "files/{{ vfs_data_file }}"
    dest: "/usr/local/bin/csit-initialize-vfs-data.sh"
    owner: "root"
    group: "root"
    mode: 0744
  tags: copy-vf-data-script
  when:
    - vfs_data_file is defined

- name: "Copy Default csit-initialize-vfs-data.sh"
  ansible.builtin.copy:
    src: "files/csit-initialize-vfs-default.sh"
    dest: "/usr/local/bin/csit-initialize-vfs-data.sh"
    owner: "root"
    group: "root"
    mode: 0744
  tags: copy-vf-data-script
  when:
    - vfs_data_file is not defined

- name: "Start csit-initialize-vfs.service"
  ansible.builtin.copy:
    src: "files/csit-initialize-vfs.service"
    dest: "/etc/systemd/system/"
    owner: "root"
    group: "root"
    mode: 0644
  notify:
    - "Start csit-initialize-vfs.service"
  tags:
    - start-vf-service

- ansible.builtin.meta: "flush_handlers"

- name: "Set Hugepages In GRUB"
  ansible.builtin.lineinfile:
    path: "/etc/default/grub"
    state: "present"
    regexp: "^GRUB_CMDLINE_LINUX="
    line: "GRUB_CMDLINE_LINUX=\"{% for key, value in grub.items() %}{% if value %}{{key}}={{value}} {% else %}{{key}} {% endif %}{% endfor %}\""
  notify:
    - "Update GRUB"
  tags:
    - set-grub