tripleo-ci/zuul.d
Rafael Folco 31180f148e Add usage instructions for standalone_environment_files
standalone_environment_files is a featureset_override that can
be tweaked to customize environment configuration files for
standalone deployments.

Change-Id: Ia6e4f1395805fe4a8cf60c8b61012d6706300e76
2018-11-26 16:26:29 -02:00
..
README.rst Add usage instructions for standalone_environment_files 2018-11-26 16:26:29 -02:00
base.yaml Move environment_type to the new base jobs 2018-10-11 10:07:00 +00:00
build-containers.yaml TripleO Container build CI job 2018-11-06 22:51:05 +00:00
build-image.yaml Update buildimage playbook for zuul v3 2018-11-12 16:47:29 +00:00
layout.yaml Update buildimage playbook for zuul v3 2018-11-12 16:47:29 +00:00
multinode-jobs.yaml New workflow for standalone upgrade. 2018-11-15 17:43:18 +00:00
nodesets.yaml Add peer and switch nodes for fedora28 2018-10-30 08:21:51 +01:00
standalone-jobs.yaml Limit f28 and upgrade standalones to master 2018-11-16 21:00:35 -07:00
undercloud-jobs.yaml remove non-voting job from gate 2018-11-06 09:56:16 -07: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.

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_plugins:
          - 'python-keystone-tests-tempest'
          - 'python-cinder-tests-tempest'
        standalone_environment_files:
          - 'environments/low-memory-usage.yaml'
          - 'ci/environments/scenario003-standalone.yaml'