feat(telemetry): Add bpf on all testbeds
[csit.git] / fdio.infra.ansible / roles / common / defaults / main.yaml
1 ---
2 # file: roles/common/defaults/main.yaml
3
4 packages: "{{ packages_base + packages_by_distro[ansible_distribution|lower][ansible_distribution_release] + packages_by_arch[ansible_machine] }}"
5
6 packages_base:
7   - "autoconf"
8   - "ca-certificates"
9   - "cgroup-tools"
10   - "dkms"
11   - "iperf3"
12   - "linux-tools-common"
13   - "ninja-build"
14   - "qemu-system"
15   - "socat"
16   - "unzip"
17   - "virtualenv"
18
19 packages_by_distro:
20   ubuntu:
21     bionic:
22       - "build-essential"
23       - "libpcap-dev"
24       - "net-tools"
25       - "python-all"
26       - "python-apt"
27       - "python-cffi"
28       - "python-cffi-backend"
29       - "python-dev"
30       - "python-pip"
31       - "python-setuptools"
32       - "python3-all"
33       - "python3-apt"
34       - "python3-cffi"
35       - "python3-cffi-backend"
36       - "python3-dev"
37       - "python3-pip"
38       - "python3-pyelftools"
39       - "python3-setuptools"
40     focal:
41       - "bpfcc-tools"
42       - "build-essential"
43       - "libbpfcc"
44       - "libbpfcc-dev"
45       - "libclang1-9"
46       - "libllvm9"
47       - "libpcap-dev"
48       - "net-tools"
49       - "python3-all"
50       - "python3-apt"
51       - "python3-bpfcc"
52       - "python3-cffi"
53       - "python3-cffi-backend"
54       - "python3-dev"
55       - "python3-pip"
56       - "python3-pyelftools"
57       - "python3-setuptools"
58
59 packages_by_arch:
60   aarch64:
61     - "gfortran"
62     - "libblas-dev"
63     - "libffi-dev"
64     - "liblapack-dev"
65     - "libssl-dev"
66   x86_64:
67     - []
68
69 # Proxy settings: Uncomment and fill the proper values. These variables will be
70 # set globally by writing into /etc/environment file on target machine.
71 # proxy_env:
72 #   http_proxy: http://proxy.com:80
73 #   HTTP_PROXY: http://proxy.com:80
74 #   https_proxy: http://proxy.com:80
75 #   HTTPS_PROXY: http://proxy.com:80
76 #   ftp_proxy: http://proxy.com:80
77 #   FTP_PROXY: http://proxy.com:80
78 #   no_proxy: localhost,127.0.0.1,{{ ansible_default_ipv4.address }}
79 #   NO_PROXY: localhost,127.0.0.1,{{ ansible_default_ipv4.address }}