cae851dc93c10378de1be15f9fe23c770a3b1a2e
[csit.git] / resources / tools / testbed-setup / ansible / inventories / lf_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 ansible_become_pass: '{{ inventory_sudo_pass }}'
7 # name_servers_search is used in /etc/hosts file on target machine.
8 name_servers_search: 'linuxfoundation.org'
9 # name_servers is used in /etc/netplan/01-netcfg.yaml
10 name_servers: "[ 199.204.44.24, 199.204.47.54 ]"
11
12 # Proxy settings: Uncomment and fill the proper values. These variables will be
13 # set globally by writing into /etc/environment file on target machine.
14 #proxy_env:
15 #  http_proxy: http://proxy.com:80
16 #  HTTP_PROXY: http://proxy.com:80
17 #  https_proxy: http://proxy.com:80
18 #  HTTPS_PROXY: http://proxy.com:80
19 #  ftp_proxy: http://proxy.com:80
20 #  FTP_PROXY: http://proxy.com:80
21 #  no_proxy: localhost,127.0.0.1,{{ ansible_default_ipv4.address }}
22 #  NO_PROXY: localhost,127.0.0.1,{{ ansible_default_ipv4.address }}
23
24 # Docker settings.
25 docker_edition: 'ce'
26 docker_channel: 'edge'
27 docker_version: '18.05.0'
28 docker_users: ['testuser']
29 docker_repository: 'deb https://download.docker.com/linux/{{ ansible_distribution | lower }} {{ ansible_distribution_release }} {{ docker_channel }}'
30 docker_apt_package_name: '{{ docker_version }}~{{ docker_edition }}~3-0~{{ ansible_distribution | lower }}'
31 docker_daemon_environment_http:
32   - 'HTTP_PROXY={{ proxy_env.http_proxy }}'
33   - 'NO_PROXY={{ proxy_env.no_proxy }}'
34 docker_daemon_environment_https:
35   - 'HTTPS_PROXY={{ proxy_env.https_proxy }}'
36   - 'NO_PROXY={{ proxy_env.no_proxy }}'
37
38 # Kubernetes settings.
39 kubernetes_channel: 'main'
40 kubernetes_version: '1.11.0-00'
41 kubernetes_repository: 'deb http://apt.kubernetes.io/ kubernetes-xenial {{ kubernetes_channel }}'
42 kubernetes_apt_package_name: '{{ kubernetes_version }}'
43
44 # DPDK settings.
45 dpdk:
46   target_dir: '/opt'
47   version: 'dpdk-19.02'
48   url: 'https://fast.dpdk.org/rel'
49
50 # Calibration settings.
51 jitter:
52   directory: '/tmp/pma_tools'
53   core: 7
54   iterations: 30