tripleo-quickstart-extras/roles/validate-tempest/defaults/main.yml
Chandan Kumar 517ce10604 Removed obseletes params from validate-tempest role
* --isolated, and --failing options does not work
  with ostestr as these options are used with testr. Since ostestr
  is used as a universal test runner for running tempest across the
  board. If the above options got enabled by mistake it will break
  the tempest run. So removing it.

*  --load-list is replaced by whitelist-files and is taken care
  by this review: https://review.openstack.org/#/c/485252/

Change-Id: I9745fdcf592c4dc5bf3cbaf11e9e6b11e209ea77
2017-07-25 15:57:15 +05:30

37 lines
1.2 KiB
YAML

---
floating_ip_cidr: "{{ undercloud_network_cidr }}"
public_net_pool_start: "{{ floating_ip_cidr|nthhost(100) }}"
public_net_pool_end: "{{ floating_ip_cidr|nthhost(120) }}"
public_net_gateway: "{{ floating_ip_cidr|nthhost(1) }}"
tempest_log_file: 'tempest_output.log'
test_regex: smoke
check_tempest_bugs: false
public_net_name: public
public_network_type: flat
public_physical_network: datacentre
public_segmentation_id: ''
tenant_network_cidr: 192.168.0.0/24
undercloud_public_net_name: ctlplane
tempest_deployer_input_file: tempest-deployer-input.conf
# steps:
tempest_undercloud: false
tempest_config: true
tempest_overcloud: true
run_tempest: false
post_tempest: true
tempest_format: packages # venv or packages
skip_file_src: "skip_file.j2"
skip_file: skip_file
tempest_until_failure: false
tempest_exit_on_failure: true
# Set tempest_version for different release
# For forked-tempest, we have branched name in synced with releases.
tempest_version_dict: { 'mitaka': 'mitaka', 'newton': 'newton',
'ocata': '16.0.0', 'master': 'master'}
tempest_version: "{{ tempest_version_dict[release] }}"
tempestmail_config: config.yaml
tempest_track_resources: true