You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
23 hours ago | |
---|---|---|
.. | ||
README.rst | 2 years ago | |
ansible.yaml | 4 years ago | |
base-upstream.yaml | 2 weeks ago | |
base.yaml | 3 weeks ago | |
build-containers.yaml | 2 months ago | |
build-image.yaml | 3 months ago | |
content-provider.yaml | 2 months ago | |
deprecated-jobs.yaml | 1 month ago | |
layout.yaml | 2 weeks ago | |
multinode-jobs.yaml | 2 weeks ago | |
nodesets.yaml | 4 weeks ago | |
periodic.yaml | 2 weeks ago | |
standalone-jobs.yaml | 23 hours ago | |
undercloud-jobs.yaml | 3 weeks ago | |
upgrades-jobs-templates.yaml | 2 weeks ago |
README.rst
Override config
featureset override
Take advantage of zuul job config to override featureset settings like tempest tests that should run. The following settings from the featureset config can be overriden:
- `run_tempest`: To run tempest or not (true|false).
- `tempest_whitelist`: List of tests you want to be executed.
- `test_exclude_regex`: Set of tempest tests to skip.
- `tempest_format`: Installing tempest from venv, packages or containers
- `tempest_extra_config`: A dict values in order to override the tempest.conf
- `tempest_plugins`: List of tempest plugins needs to be installed
- `standalone_environment_files`: List of environment files to be overriden by the featureset configuration on standalone deployment. The environment file should exist in tripleo-heat-templates repo.
- `test_white_regex`: Regex to be used by tempest
- `tempest_workers`: Numbers of parallel workers to run
Example:
- job:
name: tripleo-ci-centos-7-scenario001-multinode-oooq-container
parent: tripleo-ci-multinode
...
vars:
featureset_override:
run_tempest: true
tempest_whitelist:
- 'tempest.scenario.test_volume_boot_pattern.TestVolumeBootPattern.test_volume_boot_pattern'
tempest_exclude_regex: 'tempest.api.network|tempest.api.compute'
tempest_format: 'containers'
tempest_extra_config: {'telemetry.alarm_granularity': '60'}
tempest_workers: 1
tempest_plugins:
- 'python-keystone-tests-tempest'
- 'python-cinder-tests-tempest'
standalone_environment_files:
- 'environments/low-memory-usage.yaml'
- 'ci/environments/scenario003-standalone.yaml'