bd7d0353cf
ubuntu images are normally created with its primary interface named ens3 - however, in some cases that name can be different and its value should be configurable Change-Id: Ie9284ecda743a3154f36cd84ec492a3d15c6fbd5
33 lines
792 B
YAML
33 lines
792 B
YAML
---
|
|
|
|
test_default_conf:
|
|
DEFAULT:
|
|
debug: "{{ test_log_debug }}"
|
|
log_dir: "{{ test_log_file | dirname }}"
|
|
log_file: "{{ test_log_file | basename }}"
|
|
|
|
testcase:
|
|
timeout: "{{ test_case_timeout }}"
|
|
test_runner_timeout: "{{ test_runner_timeout }}"
|
|
|
|
tripleo:
|
|
undercloud_ssh_hostname: "{{ undercloud_ssh_hostname }}"
|
|
overcloud_ssh_username: "{{ overcloud_ssh_username }}"
|
|
ubuntu:
|
|
interface_name: "{{ ubuntu_interface_name }}"
|
|
|
|
test_log_debug: ''
|
|
|
|
test_case_timeout: 1800.
|
|
test_runner_timeout: 14400.
|
|
|
|
# OpenStack client credentials
|
|
stackrc_file: '{{ ansible_user_dir }}/overcloudrc'
|
|
|
|
undercloud_hostname: '{{ groups.get("undercloud", []) | first | default("undercloud-0") }}'
|
|
undercloud_ssh_hostname: ''
|
|
|
|
overcloud_ssh_username: ''
|
|
|
|
ubuntu_interface_name: ''
|