tripleo-ci/zuul.d
Chandan Kumar (raukadah) d485912d98 Improve build images role for CentOS8
* Below is the list of improvements, it adds
- replace rhel_image_source to tripleo_image_source by maintaining
  backward compatibility
- Reset dib set_facts for RHEL and CentOS-8
- Run pathfix_repos.sh script only for few files
- Set DIB_NAME and DIB_PYTHON_VERSION for centos-8 and RHEL-8
  as the Image stills have python2 content or getting pulled by
  something else.
- Added the centos jobs to respective places
- Install pyyaml for centos-8
- Copy tripleo-centos-* repo when dib_yum_repo_conf is not defined

Change-Id: Ibcf1cbb7e3fa669e926392f3dd2c122cabb889e9
Signed-off-by: Chandan Kumar (raukadah) <chkumar@redhat.com>
2020-03-03 12:51:26 -05: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 Improve build images role for CentOS8 2020-03-03 12:51:26 -05:00
build-containers.yaml make centos-8 build containers, voting, gating 2020-03-03 05:13:56 +00:00
build-image.yaml Improve build images role for CentOS8 2020-03-03 12:51:26 -05:00
deprecated-jobs.yaml Remove pike multinode jobs 2019-08-29 19:43:56 +05:30
layout.yaml Improve build images role for CentOS8 2020-03-03 12:51:26 -05:00
multinode-jobs.yaml Added CentOS-8 standalone jobs 2020-02-28 10:03:19 -05:00
nodesets.yaml Add base centos 8 jobs for parenting 2020-02-26 12:10:25 -05:00
periodic.yaml Make periodic job run with check parameters 2019-08-28 15:13:17 +03:00
standalone-jobs.yaml Added CentOS-8 standalone jobs 2020-02-28 10:03:19 -05:00
undercloud-jobs.yaml Don't run regular job on sova patterns 2020-02-23 19:20:17 +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'