import zuul job settings from project-config

This is a mechanically generated patch to complete step 1 of moving
the zuul job settings out of project-config and into each project
repository.

Because there will be a separate patch on each branch, the branch
specifiers for branch-specific jobs have been removed.

Because this patch is generated by a script, there may be some
cosmetic changes to the layout of the YAML file(s) as the contents are
normalized.

See the python3-first goal document for details:
https://governance.openstack.org/tc/goals/stein/python3-first.html

Change-Id: I7a7838d04c7a22c1c80d211393c1e1be10f3e0b0
Story: #2002586
Task: #24344
This commit is contained in:
Nguyen Hai 2018-08-19 00:59:24 +09:00
parent 9be780b2b9
commit 546012bed4
1 changed files with 24 additions and 17 deletions

View File

@ -1,4 +1,10 @@
- project: - project:
templates:
- openstack-python-jobs
- openstack-python35-jobs
- publish-openstack-sphinx-docs
- check-requirements
- release-notes-jobs
check: check:
jobs: jobs:
- watcher-tempest-functional - watcher-tempest-functional
@ -10,6 +16,7 @@
- watcher-tempest-zone_migration - watcher-tempest-zone_migration
- openstack-tox-lower-constraints - openstack-tox-lower-constraints
gate: gate:
queue: watcher
jobs: jobs:
- watcher-tempest-functional - watcher-tempest-functional
- openstack-tox-lower-constraints - openstack-tox-lower-constraints
@ -19,35 +26,35 @@
parent: watcher-tempest-multinode parent: watcher-tempest-multinode
voting: false voting: false
vars: vars:
tempest_test_regex: 'watcher_tempest_plugin.tests.scenario.test_execute_dummy_optim' tempest_test_regex: watcher_tempest_plugin.tests.scenario.test_execute_dummy_optim
- job: - job:
name: watcher-tempest-actuator name: watcher-tempest-actuator
parent: watcher-tempest-multinode parent: watcher-tempest-multinode
voting: false voting: false
vars: vars:
tempest_test_regex: 'watcher_tempest_plugin.tests.scenario.test_execute_actuator' tempest_test_regex: watcher_tempest_plugin.tests.scenario.test_execute_actuator
- job: - job:
name: watcher-tempest-basic_optim name: watcher-tempest-basic_optim
parent: watcher-tempest-multinode parent: watcher-tempest-multinode
voting: false voting: false
vars: vars:
tempest_test_regex: 'watcher_tempest_plugin.tests.scenario.test_execute_basic_optim' tempest_test_regex: watcher_tempest_plugin.tests.scenario.test_execute_basic_optim
- job: - job:
name: watcher-tempest-workload_balancing name: watcher-tempest-workload_balancing
parent: watcher-tempest-multinode parent: watcher-tempest-multinode
voting: false voting: false
vars: vars:
tempest_test_regex: 'watcher_tempest_plugin.tests.scenario.test_execute_workload_balancing' tempest_test_regex: watcher_tempest_plugin.tests.scenario.test_execute_workload_balancing
- job: - job:
name: watcher-tempest-zone_migration name: watcher-tempest-zone_migration
parent: watcher-tempest-multinode parent: watcher-tempest-multinode
voting: false voting: false
vars: vars:
tempest_test_regex: 'watcher_tempest_plugin.tests.scenario.test_execute_zone_migration' tempest_test_regex: watcher_tempest_plugin.tests.scenario.test_execute_zone_migration
- job: - job:
name: watcher-tempest-multinode name: watcher-tempest-multinode
@ -63,7 +70,7 @@
post-config: post-config:
$NOVA_CONF: $NOVA_CONF:
libvirt: libvirt:
live_migration_uri: 'qemu+ssh://root@%s/system' live_migration_uri: qemu+ssh://root@%s/system
$WATCHER_CONF: $WATCHER_CONF:
watcher_cluster_data_model_collectors.compute: watcher_cluster_data_model_collectors.compute:
period: 120 period: 120
@ -91,14 +98,14 @@
post-config: post-config:
$NOVA_CONF: $NOVA_CONF:
libvirt: libvirt:
live_migration_uri: 'qemu+ssh://root@%s/system' live_migration_uri: qemu+ssh://root@%s/system
$WATCHER_CONF: $WATCHER_CONF:
watcher_cluster_data_model_collectors.compute: watcher_cluster_data_model_collectors.compute:
period: 120 period: 120
watcher_cluster_data_model_collectors.baremetal: watcher_cluster_data_model_collectors.baremetal:
period: 120 period: 120
watcher_cluster_data_model_collectors.storage: watcher_cluster_data_model_collectors.storage:
period: 120 period: 120
test-config: test-config:
$TEMPEST_CONFIG: $TEMPEST_CONFIG:
compute: compute:
@ -135,8 +142,8 @@
s-object: false s-object: false
s-proxy: false s-proxy: false
devstack_localrc: devstack_localrc:
TEMPEST_PLUGINS: '/opt/stack/watcher-tempest-plugin' TEMPEST_PLUGINS: /opt/stack/watcher-tempest-plugin
tempest_test_regex: 'watcher_tempest_plugin.tests.api' tempest_test_regex: watcher_tempest_plugin.tests.api
tox_envlist: all tox_envlist: all
tox_environment: tox_environment:
# Do we really need to set this? It's cargo culted # Do we really need to set this? It's cargo culted
@ -152,5 +159,5 @@
vars: vars:
tempest_concurrency: 1 tempest_concurrency: 1
devstack_localrc: devstack_localrc:
TEMPEST_PLUGINS: '/opt/stack/python-watcherclient' TEMPEST_PLUGINS: /opt/stack/python-watcherclient
tempest_test_regex: 'watcherclient.tests.functional' tempest_test_regex: watcherclient.tests.functional