tripleo-ci/zuul.d
Wes Hayutin 4db03f5e1e define a job specifically for repoclosure
Change-Id: I9a59a114630eb4c97ddb158504bcc56ae8bdfbaf
2021-04-09 12:22:13 -06: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.yaml Merge "ensure molecule runs on centos8" 2021-04-09 05:19:53 +00:00
build-containers.yaml Remove all rocky related jobs/conditionals tests after rocky End of Life 2021-03-26 13:47:18 +02:00
build-image.yaml Add wallaby jobs in build image 2021-04-07 16:03:03 +02:00
content-provider.yaml Add wallaby jobs in content provider 2021-04-07 21:21:41 +02:00
deprecated-jobs.yaml Remove all rocky related jobs/conditionals tests after rocky End of Life 2021-03-26 13:47:18 +02:00
layout.yaml Make content-provider depend on openstack-tox-linters in check 2021-02-19 15:56:20 +02:00
multinode-jobs.yaml Add wallaby jobs in multinode 2021-04-07 17:20:17 +02:00
nodesets.yaml Use stream labels on all centos 8 nodesets 2021-03-15 22:07:02 +00:00
periodic.yaml add updates job to periodic 2021-03-25 13:47:38 +05:30
standalone-jobs.yaml define a job specifically for repoclosure 2021-04-09 12:22:13 -06:00
undercloud-jobs.yaml Merge "Remove all rocky related jobs/conditionals tests after rocky End of Life" 2021-04-07 02:55:43 +00:00
upgrades-jobs-templates.yaml Further updates to irrelevant-files across templates 2021-03-16 13:43:35 +00:00

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'