tripleo-ci/zuul.d
Wes Hayutin 4796b3e393 reduce scope of standalone-upgrade(stein/train)
too many errors atm to enable these as voting
and running across multple branches

Change-Id: I5ccc1e853c34f13a1c0cb3e93af2dd88e4824a89
2020-01-16 10:26:47 -07:00
..
README.rst Add tempest_workers to featureset_overrides 2018-12-10 11:48:59 +00:00
ansible.yaml Create tripleo-ansible-role-job template for ansible projects. 2018-11-27 17:22:59 +01:00
base.yaml Assure requirements.txt is not ignored 2020-01-13 17:32:06 +00:00
build-containers.yaml Added train jobs 2019-10-24 11:56:39 +02:00
build-image.yaml Add tripleo-build-images-base job & reparent existing build jobs 2019-07-15 08:50:38 +00:00
deprecated-jobs.yaml Remove pike multinode jobs 2019-08-29 19:43:56 +05:30
layout.yaml Make minion job voting 2019-12-05 12:12:52 -07:00
multinode-jobs.yaml Replace ostempest job in favor of plain standalone 2019-12-16 11:50:58 +00:00
nodesets.yaml Nuke f28 job/nodeset definitions 2019-08-28 16:14:35 -03:00
periodic.yaml Make periodic job run with check parameters 2019-08-28 15:13:17 +03:00
standalone-jobs.yaml reduce scope of standalone-upgrade(stein/train) 2020-01-16 10:26:47 -07:00
undercloud-jobs.yaml Make minion job voting 2019-12-05 12:12:52 -07: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_black_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_black_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'