LTS: Performance testing
[csit.git] / resources / tools / testbed-setup / 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] + packages_by_arch[ansible_machine] }}"
5
6 packages_base:
7   - "autoconf"
8   - "cgroup-tools"
9   - "dkms"
10   - "iperf3"
11   - "linux-tools-common"
12   - "qemu-system"
13   - "socat"
14   - "unzip"
15   - "virtualenv"
16
17 packages_by_distro:
18   ubuntu:
19     - "build-essential"
20     - "libpcap-dev"
21     - "python-all"
22     - "python-apt"
23     - "python-cffi"
24     - "python-cffi-backend"
25     - "python-dev"
26     - "python-pip"
27     - "python-setuptools"
28     - "python3-all"
29     - "python3-apt"
30     - "python3-cffi"
31     - "python3-cffi-backend"
32     - "python3-dev"
33     - "python3-pip"
34     - "python3-setuptools"
35
36 packages_by_arch:
37   aarch64:
38     - "gfortran"
39     - "libblas-dev"
40     - "liblapack-dev"
41   x86_64:
42     - []
43
44 # Proxy settings: Uncomment and fill the proper values. These variables will be
45 # set globally by writing into /etc/environment file on target machine.
46 #proxy_env:
47 #  http_proxy: http://proxy.com:80
48 #  HTTP_PROXY: http://proxy.com:80
49 #  https_proxy: http://proxy.com:80
50 #  HTTPS_PROXY: http://proxy.com:80
51 #  ftp_proxy: http://proxy.com:80
52 #  FTP_PROXY: http://proxy.com:80
53 #  no_proxy: localhost,127.0.0.1,{{ ansible_default_ipv4.address }}
54 #  NO_PROXY: localhost,127.0.0.1,{{ ansible_default_ipv4.address }}
55