tripleo-ci/zuul.d
Wesley Hayutin 65b0f79162 move scenario010 to branched jobs for voting
scenario010 and ovn-provider-scenario010
have been difficult to get voting/gating across
all branches at the same time.  Break the
unbranched job into branched jobs so that
we can move one branch at a time

Change-Id: I7c6ca59356f81e8acfbfc2aef8cec68da6c63f34
2021-07-26 06:54:51 -04: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 move scenario010 to branched jobs for voting 2021-07-26 06:54:51 -04: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 Handle overcloud-hardened-uefi-full in oooci-build-images 2021-06-29 09:39:01 +12:00
content-provider.yaml Move content providers to content-provider template and fix branches 2021-06-28 11:53:35 +05:30
deprecated-jobs.yaml Move undercloud-upgrade from deprecated to master check & gating 2021-07-13 12:40:21 +03:00
layout.yaml Make standalone-ipa jobs voting again - minus train 2021-06-23 11:59:50 +00:00
multinode-jobs.yaml Reduce irrelevant-files from content provider jobs 2021-07-20 07:30:45 +00:00
nodesets.yaml Use stream labels on all centos 8 nodesets 2021-03-15 22:07:02 +00:00
periodic.yaml Modify content providers in periodic line 2021-07-16 13:04:24 +05:30
standalone-jobs.yaml move scenario010 to branched jobs for voting 2021-07-26 06:54:51 -04: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 Merge "Revert "Temp mark undercloud-upgrade-wallaby non voting for swift bug"" 2021-07-15 12:55:17 +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'