Files
governance/goals/selected/victoria/native-zuulv3-jobs.rst
Luigi Toscano eeb625a6d0 V goals, Zuul v3 migration: update links and grenade
Update a few links:
- to the restored Zuul v3 migration guide;
- to the Zuul jobs reference;

Update the information about the grenade jobs and add
a few examples.

Change-Id: I85090964cbccb0796552f61556dfaa9591a6d459
2020-07-28 19:30:43 +02:00

135 lines
4.9 KiB
ReStructuredText

=================================
Switch legacy Zuul jobs to native
=================================
As part of the switch to Zuul v3, all the existing jobs have been
automatically converted from their Jenkins counterparts.
Unfortunately not all of them have been migrated to fully native
Zuul v3 jobs, making their maintainance more complicated.
Legacy jobs, created using automated scripts, brings with them
a lot of duplicated code. They also rely on obsoleted (zuul-cloner)
or difficult to maintain components (devstack-gate) and in general
an older job creation logic. All these factors make their
maintainence extremely difficult.
Given the benefits of the usage of native Zuul v3 jobs, it is
worth asking why not all the jobs have been converted.
There are several reasons. For example, the required functionality
for native Tempest tests were not available at the time of the switch.
Native Grenade jobs are not yet available,
even though some work is in progress.
Nevertheless, the general status improved significantly in the last year
and we can finally move the remaining legacy jobs to the native Zuul v3
jobs for all official OpenStack projects.
Champion
========
Luigi Toscano (tosky)
Gerrit Topic
============
To facilitate tracking, commits related to this goal should use the
gerrit topic::
native-zuulv3-migration
Completion Criteria
===================
#. All legacy jobs for official OpenStack projects, if still relevant,
should be replaced by native Zuul v3 jobs in the master branch.
#. The replacement jobs should be designed in a way which does not
prevent their backport to the stable branches.
Stretch goals
=============
#. If a replaced job is also used in some stable branches, backport it
to all supported branches.
References
==========
The main reference for converting legacy Zuul jobs is the `Zuul v3
Migration Guide <https://docs.openstack.org/project-team-guide/zuulv3.html>`_,
originally part of `Infrastructure User Manual
<https://docs.openstack.org/infra/manual/>`_
and since then restored and imported into the `testing section of
the OpenStack Project Team Guide
<https://docs.openstack.org/project-team-guide/testing.html>`_.
A complete reference to the Zuul jobs is available as part of the
`Zuul User's Guide <https://zuul-ci.org/docs/zuul/reference/jobs.html>`_.
During the Dublin PTG 2018 the QA team provided some updates and
examples on the Zuul v3 migrations. The slides are not merged yet
in the publications repository but the `work-in-progress patch
<https://review.opendev.org/548178>`_ can still be useful.
Examples of migration:
- sahara-tests: https://review.opendev.org/512058/
and https://review.opendev.org/547669/
This latter was an early migration and the jobs have evolved
a bit since then. Specifically, the second change fixes the
multinode support. Together, and taking into account
the current version of the affected files, they are a
good starting point.
This porting includes both "straightforward" conversions
(inheriting from devstack-tempest)
and examples of custom ansible code.
- A more recent example of a devstack (non-tempest) jobs:
* python-cinderclient: https://review.opendev.org/672784
* python-manilaclient: https://review.opendev.org/737919
- heat-functional-tests: https://review.opendev.org/660877
This example collect tests from two repositories (heat and
heat-tempest-plugin). Also example for gabbit tests.
- manila porting, with custom ansible code which replaced
shell scripts: https://review.opendev.org/740534
and https://review.opendev.org/724466
- various grenade jobs:
* sahara: https://review.opendev.org/638390
* cinder: https://review.opendev.org/709780
* ironic: https://review.opendev.org/703995
* octavia: https://review.opendev.org/725098
* neutron: https://review.opendev.org/725073
* manila: https://review.opendev.org/741727
Current State / Anticipated Impact
==================================
Jobs which executes devstack alone or combined with common
operations like running tempest tests have been ported already or
can be ported without many problems.
Jobs which requires less standard operations (for example, a cycle of
reconfiguration/test executions, or custom tests) require additional
work.
While Grenade-based jobs had not yet been available at the time
of the approval of the goal, they were `completed and merged
<https://review.opendev.org/#/c/548936/>`_ right before branching
Ussuri, and then backported up to Train.
In fact finalizing the effort on Zuul v3 was considered part of the goal,
while still moving forward with all the other non-Grenade conversions.
As expected, porting most Grenade jobs should now be trivial.
While cleaning the legacy jobs from `openstack-zuul-jobs
<https://opendev.org/openstack/openstack-zuul-jobs.git>`_ and
`project-config <https://opendev.org/openstack/project-config.git>`_
is not part of the completion criteria, achieving the stretch goal
would reduce the amount of items to track in those repositories.