Ansible: Mellanox install
[csit.git] / resources / tools / testbed-setup / ansible / inventories / lf_inventory / group_vars / all.yaml
1 ---
2 # file: lf_inventory/group_vars/all.yaml
3
4 # General variables
5 ansible_python_interpreter: '/usr/bin/python2.7'
6 # provision via cobbler
7 provision_enabled: False
8 # name_servers_search is used in /etc/hosts file on target machine.
9 name_servers_search: 'linuxfoundation.org'
10 # name_servers is used in /etc/netplan/01-netcfg.yaml
11 name_servers: "1.1.1.1, 8.8.8.8"
12
13 # Proxy settings: Uncomment and fill the proper values. These variables will be
14 # set globally by writing into /etc/environment file on target machine.
15 #proxy_env:
16 #  http_proxy: http://proxy.com:80
17 #  HTTP_PROXY: http://proxy.com:80
18 #  https_proxy: http://proxy.com:80
19 #  HTTPS_PROXY: http://proxy.com:80
20 #  ftp_proxy: http://proxy.com:80
21 #  FTP_PROXY: http://proxy.com:80
22 #  no_proxy: localhost,127.0.0.1,{{ ansible_default_ipv4.address }}
23 #  NO_PROXY: localhost,127.0.0.1,{{ ansible_default_ipv4.address }}
24
25 # Docker settings.
26 docker_edition: 'ce'
27 docker_channel: 'edge'
28 docker_version: '18.05.0'
29 docker_users: ['testuser']
30 docker_repository: 'deb https://download.docker.com/linux/{{ ansible_distribution | lower }} {{ ansible_distribution_release }} {{ docker_channel }}'
31 docker_apt_package_name: '{{ docker_version }}~{{ docker_edition }}~3-0~{{ ansible_distribution | lower }}'
32 docker_daemon_environment_http:
33   - 'HTTP_PROXY={{ proxy_env.http_proxy }}'
34   - 'NO_PROXY={{ proxy_env.no_proxy }}'
35 docker_daemon_environment_https:
36   - 'HTTPS_PROXY={{ proxy_env.https_proxy }}'
37   - 'NO_PROXY={{ proxy_env.no_proxy }}'
38
39 # Kubernetes settings.
40 kubernetes:
41   version: '1.11.0-00'
42   repository: 'deb http://apt.kubernetes.io/ kubernetes-xenial main'
43
44 # TRex settings.
45 trex:
46   target_dir: '/opt'
47   version: '2.61'
48
49 # DPDK settings.
50 dpdk:
51   target_dir: '/opt'
52   version: 'dpdk-19.02'
53   url: 'https://fast.dpdk.org/rel'
54   build_targets:
55     aarch64: "arm64-armv8a"
56     x86_64: "x86_64-native"
57
58 # WRK settings.
59 wrk:
60   target_dir: '/opt'
61   version: '4.0.2'
62
63 # Calibration settings.
64 jitter:
65   directory: '/tmp/pma_tools'
66   core: 7
67   iterations: 30
68
69 # Mellanox OFED settings.
70 mellanox:
71   version: '4.6-1.0.1.1'