tripleo-ci/zuul.d
Marios Andreou 2d535eddb4 Adds tripleo-quickstart & extras to required projects and roles
Adds tq and tqe to the required-projects: and roles: in zuul.d/base
for use with [1] where we are switching to use the repo-setup
role for containers and image builds. We need to split out the
changes to base so we can merge those and before we can test [1]
with the downstream jobs

[1] https://review.opendev.org/c/openstack/tripleo-ci/+/818222/48#message-a616446c90e0aff70e7c7a1276efd6330392e4c4

Change-Id: I4c1c972e1ea3111c623701a53a20c588809b1ac1
2021-12-03 09:26:54 +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 Adds tripleo-quickstart & extras to required projects and roles 2021-12-03 09:26:54 +02:00
build-containers.yaml Enable supported container-tools before login 2021-08-31 15:01:45 -04:00
build-image.yaml Disable voting for centos9 build-image jobs 2021-11-29 15:49:03 +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 tripleo-tox-molecule voting/gating again 2021-11-30 16:50:16 -05:00
multinode-jobs.yaml Merge "Remove jobs that uses obselete fs b/w 31 - 99" 2021-09-22 14:52:27 +00: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 Move tripleo-ci common role to ci-common-vars due to name clash 2021-11-26 14:53:24 +02:00
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'