tripleo-ci/zuul.d
Zuul 0bd97b96fe Merge "Set image and container build jobs non-voting: stream" 2021-03-07 16:07:16 +00: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 Use Zuul Ansible of newer 2.9 version with C8 nodes 2021-01-21 19:02:07 +02:00
build-containers.yaml Set image and container build jobs non-voting: stream 2021-03-04 16:43:49 -05:00
build-image.yaml Set image and container build jobs non-voting: stream 2021-03-04 16:43:49 -05:00
content-provider.yaml Add job definition for victoria content-provider 2020-11-02 11:49:51 +02:00
deprecated-jobs.yaml Remove standalone/undercloud from multinode layouts +deprecate old 2021-02-25 11:17:48 +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 Remove standalone/undercloud from multinode layouts +deprecate old 2021-02-25 11:17:48 +02:00
nodesets.yaml Define centos-8 stream nodesets for upstream jobs 2021-03-04 21:35:15 +00:00
periodic.yaml Fixed yamlint violations 2021-02-10 15:24:59 +00:00
standalone-jobs.yaml Add standalone001 to tripleoclient utils changes 2021-03-04 07:48:42 -07:00
undercloud-jobs.yaml Move master undercloud/standalone/overcloud upgrade jobs deprecated 2021-02-11 18:06:40 +02:00
upgrades-jobs-templates.yaml Move master undercloud/standalone/overcloud upgrade jobs deprecated 2021-02-11 18:06:40 +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'