tripleo-ci/zuul.d
Marios Andreou c2ee81752b Make content-provider depend on openstack-tox-linters in check
Part of a wider CI optimization at [1] this makes the content
provider job in the check layout depend on openstack-tox-linters.

Also added to the multinode-branchful template since it is used
only in tq/tqe and they both already have the linters job.

[1] https://review.opendev.org/q/topic:tripleo-ci-reduce

Change-Id: Id70d5724a26abb0042cd8219c68aa194612147a1
2021-02-19 15:56:20 +02: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 Use Zuul Ansible of newer 2.9 version with C8 nodes 2021-01-21 19:02:07 +02:00
build-containers.yaml Merge "Revert "Pin UBI image to 8.2 for build containers job"" 2020-12-28 04:49:30 +00:00
build-image.yaml Revisit files: matches for zuul job templates to reduce redundancy 2021-02-12 10:10:11 +00:00
content-provider.yaml Add job definition for victoria content-provider 2020-11-02 11:49:51 +02:00
deprecated-jobs.yaml Merge "Moves centos-7-scenario-multinode queens jobs to deprecated-jobs" 2021-02-18 15:23:43 +00:00
layout.yaml Make content-provider depend on openstack-tox-linters in check 2021-02-19 15:56:20 +02:00
multinode-jobs.yaml Make content-provider depend on openstack-tox-linters in check 2021-02-19 15:56:20 +02:00
nodesets.yaml Don't install br-ex on standalone 2020-10-13 17:31:27 +00:00
periodic.yaml Fixed yamlint violations 2021-02-10 15:24:59 +00:00
standalone-jobs.yaml Further tighten the files: for scenario standalones tripleo-common 2021-02-16 17:24:07 +02: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_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'