
Tobiko has always used Ubuntu images as advanced guest images to create VM instances during its tests. This patch replaces the Ubuntu image with a Fedora image that is customized to work with Tobiko tests properly. The different files, config parameters, classes and attributes are renamed to use the generic "advanced_vm" and "Advanced" prefixes to make it easier in case another change of guest images is done in the future. Depends-On: I6015af347dba6b8a587fa3b3811ca4c8cdd41b7a Change-Id: Ie4ed523eb9646b6e79553341500c2e3314af8c3d
45 lines
1.2 KiB
YAML
45 lines
1.2 KiB
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 }}"
|
|
undercloud_ssh_key_filename: "{{ undercloud_ssh_key_filename }}"
|
|
has_external_load_balancer: "{{ has_external_load_balancer }}"
|
|
ceph_rgw: "{{ ceph_rgw }}"
|
|
|
|
nova:
|
|
advanced_vm_connection_timeout: "{{ advanced_vm_connection_timeout }}"
|
|
advanced_vm_is_reachable_timeout: "{{ advanced_vm_is_reachable_timeout }}"
|
|
|
|
manila:
|
|
share_protocol: "{{ manila_share_protocol }}"
|
|
|
|
test_log_debug: ''
|
|
|
|
test_case_timeout: 1800.
|
|
test_runner_timeout: 14400.
|
|
|
|
undercloud_hostname: '{{ groups.get("undercloud", []) | first | default("undercloud-0") }}'
|
|
undercloud_ssh_hostname: ''
|
|
undercloud_ssh_key_filename: ''
|
|
has_external_load_balancer: ''
|
|
|
|
overcloud_ssh_username: ''
|
|
|
|
ceph_rgw: ''
|
|
|
|
advanced_vm_connection_timeout: ''
|
|
advanced_vm_is_reachable_timeout: ''
|
|
|
|
manila_share_protocol: ''
|