484e6ddb4b4f16314af50805f01f837209ba0c9a
[csit.git] / resources / tools / testbed-setup / ansible / inventories / sample_inventory / group_vars / all.yaml
1 ---
2 # file: group_vars/all.yaml
3
4 # General variables
5 ansible_python_interpreter: '/usr/bin/python2.7'
6 # provision via cobbler
7 provision_enabled: True
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: "199.204.44.24, 199.204.47.54"
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_channel: 'main'
41 kubernetes_version: '1.11.0-00'
42 kubernetes_repository: 'deb http://apt.kubernetes.io/ kubernetes-xenial {{ kubernetes_channel }}'
43 kubernetes_apt_package_name: '{{ kubernetes_version }}'
44
45 # DPDK settings.
46 dpdk:
47   target_dir: '/opt'
48   version: 'dpdk-19.02'
49   url: 'https://fast.dpdk.org/rel'
50   build_targets:
51     aarch64: "arm64-armv8a"
52     x86_64: "x86_64-native"
53
54 # WRK settings.
55 wrk:
56   target_dir: '/opt'
57   version: '4.0.2'
58   url: 'https://github.com/wg/wrk/archive'
59
60 # Calibration settings.
61 jitter:
62   directory: '/tmp/pma_tools'
63   core: 7
64   iterations: 30