tripleo-ci/zuul.d
Zuul 83b81e7b72 Merge "Use tripleo-buildcontainers pre playbook in RDO and Upstream" 2022-03-15 20:50:36 +00: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-upstream.yaml Use tripleo-buildcontainers pre playbook in RDO and Upstream 2022-03-15 18:13:51 +05:30
base.yaml Merge "Move 'setup-compose-repos' pre playbook to base jobs" 2022-03-15 20:50:33 +00:00
build-containers.yaml Centos8 master jobs teardown - c8 on train/ussuri/victoria/wallaby 2022-02-11 12:29:44 +02:00
build-image.yaml Run centos-9 jobs for stable/wallaby check/gate layouts 2022-02-24 08:33:17 +00:00
content-provider.yaml Merge "Add tripleo-ci-centos-9-content-provider-wallaby job definition" 2022-02-28 16:23:21 +00:00
deprecated-jobs.yaml Moves master undercloud-upgrade and minor update deprecated add c9 2022-02-08 09:21:15 +00:00
layout.yaml Centos8 master jobs teardown - c8 on train/ussuri/victoria/wallaby 2022-02-11 12:29:44 +02:00
multinode-jobs.yaml Use required-projects-multinode-upstream as parent for multinode jobs 2022-03-08 21:45:19 +05:30
nodesets.yaml Use nested-virt nodeset for c9 scenario010 2022-01-24 12:35:44 -05:00
periodic.yaml Add tripleo-ci-centos-9-undercloud-upgrade job 2022-02-24 04:27:34 +00:00
standalone-jobs.yaml Make tripleo-ci-centos-9-standalone-on-multinode-ipa non voting till 1963675 is fixed 2022-03-04 22:25:24 +05:30
undercloud-jobs.yaml Run centos-9 jobs for stable/wallaby check/gate layouts 2022-02-24 08:33:17 +00:00
upgrades-jobs-templates.yaml Adds centos-9-scen000 minor update job to wallaby upgrade template 2022-03-10 10:22:14 +02: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'