tripleo-ci/zuul.d
Sofer Athlan-Guyot 9e7cf30337 Add content provider using current tag to build containers for minor update
Add content provider job, which builds containers using `current` dlrn
tag on same release branch as regular content-provider job.

Apart from new content provider job, the change adds new variable called
`minor_update`, which enables to consume containers created by new
content provider job in depended multinode-oooq-container-updates job.

minor_update variable is used in featureset068.
The featureset is activated in jobs for wallaby branch and onwards.
Train job uses featureset038 as previously.

Related-Bug: #2015993
Change-Id: I7a7713be0cd15321d5b16f6b8ca85f06d296219f
2023-06-22 15:03:51 +02: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 Add a multi-rhel update job 2023-03-20 11:04:49 +01:00
build-containers.yaml Switch to ubi9 containers_base_image image 2022-06-28 02:33:08 +00:00
build-image.yaml Remove centos8 wallaby jobs from zuul layouts 2022-12-13 12:13:30 +00:00
content-provider.yaml Add content provider using current tag to build containers for minor update 2023-06-22 15:03:51 +02:00
deprecated-jobs.yaml Merge "Do not exclude the scripts directory" 2022-10-27 10:25:11 +00:00
layout.yaml Add Ceph nightly jobs for stable/wallaby 2023-06-15 16:30:13 -03:00
multinode-jobs.yaml Add content provider using current tag to build containers for minor update 2023-06-22 15:03:51 +02:00
nodesets.yaml Add new multinode-mixed-os job and required content provider changes 2022-07-25 12:01:31 +03:00
periodic.yaml Add content provider using current tag to build containers for minor update 2023-06-22 15:03:51 +02:00
standalone-jobs.yaml Add Ceph nightly jobs for stable/wallaby 2023-06-15 16:30:13 -03:00
undercloud-jobs.yaml Pull flake8 from Github 2022-11-16 11:02:03 +09:00
upgrades-jobs-templates.yaml Add content provider using current tag to build containers for minor update 2023-06-22 15:03:51 +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'