tripleo-ci/zuul.d
Zuul 5e5e7868d4 Merge "Added standalone-full-tempest-api & -scenario -options jobs" 2022-06-17 14:51:00 +00:00
..
README.rst Update README to new rolevar for run-temepst role 2021-02-11 13:42:27 -06:00
ansible.yaml Create tripleo-ansible-role-job template for ansible projects. 2018-11-27 17:22:59 +01:00
base-upstream.yaml Adds compose-repos pre playbook on base jobs 2022-03-31 19:17:54 +00:00
base.yaml Use undercloud base parent in undercloud upgrade job 2022-05-02 10:00:24 +00:00
build-containers.yaml Ussuri tear down as EOL 2022-05-16 11:51:39 +05:30
build-image.yaml Ussuri tear down as EOL 2022-05-16 11:51:39 +05:30
content-provider.yaml Ussuri tear down as EOL 2022-05-16 11:51:39 +05:30
deprecated-jobs.yaml Ussuri tear down as EOL 2022-05-16 11:51:39 +05:30
layout.yaml Enable tripleo-ceph-periodic run for tripleo-ci project 2022-03-30 11:19:56 +00:00
multinode-jobs.yaml Ussuri tear down as EOL 2022-05-16 11:51:39 +05:30
nodesets.yaml Use nested-virt nodeset for c9 scenario010 2022-01-24 12:35:44 -05:00
periodic.yaml Add ussuri content provider back to upstream periodic layout 2022-05-30 08:45:54 +03:00
standalone-jobs.yaml Merge "Added standalone-full-tempest-api & -scenario -options jobs" 2022-06-17 14:51:00 +00:00
undercloud-jobs.yaml Ussuri tear down as EOL 2022-05-16 11:51:39 +05:30
upgrades-jobs-templates.yaml Add back ussuri content-provider for V upgradejobs 2022-05-23 12:50:49 +05:30

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'