tripleo-ci/zuul.d
Sagi Shnaidman 4c54eb2b63 Remove victoria and ussuri from CI repos
Change-Id: I352493cfb98ecf671bf3b7001aee95ce6914219f
2021-11-29 12:05:07 +02:00
..
README.rst Update README to new rolevar for run-temepst role 2021-02-11 13:42:27 -06:00
ansible-galaxy.yaml Adds tripleo-repos/-operator-ansible collection push jobs 2021-10-11 10:08:49 +00:00
ansible.yaml Create tripleo-ansible-role-job template for ansible projects. 2018-11-27 17:22:59 +01:00
base.yaml Wire up centos9 master buildimage jobs for check and gate 2021-11-12 13:28:02 +02:00
build-containers.yaml Enable supported container-tools before login 2021-08-31 15:01:45 -04:00
build-image.yaml Wire up centos9 master buildimage jobs for check and gate 2021-11-12 13:28:02 +02:00
content-provider.yaml add tripleo-common checkout to content-provider 2021-08-18 10:54:11 -06:00
deprecated-jobs.yaml Remove jobs that uses obselete fs b/w 31 - 99 2021-09-16 12:07:38 +00:00
layout.yaml Make standalone-ipa jobs voting again - minus train 2021-06-23 11:59:50 +00:00
multinode-jobs.yaml Remove victoria and ussuri from CI repos 2021-11-29 12:05:07 +02:00
nodesets.yaml Add new centos9 stream nodesets for tripleo CI 2021-11-05 12:53:12 +02:00
periodic.yaml Rename the upstream upgrades templates so we can run only once 2021-08-02 16:40:30 +00:00
standalone-jobs.yaml Make scenario010 job voting 2021-11-16 17:02:10 +05:30
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 "Donot trigger undercloud upgrade jobs on standalone fs" 2021-09-11 02:20:29 +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'