This defines the dates where certain changes must be made. Change-Id: I3bfa2909cba9661f542512316e900e75eaa92d6b
8.2 KiB
Releases
This guide is intended to complement the OpenStack releases site, and the project team guide's section on release management.
Team members make themselves familiar with the release schedule for the current release, for example https://releases.openstack.org/train/schedule.html.
Release Model
As a deployment project, Kayobe's release model differs from many other OpenStack projects. Kayobe follows the cycle-trailing release model, to allow time after the OpenStack coordinated release to wait for distribution packages and support new features. This gives us three months after the final release to prepare our final releases. Users are typically keen to try out the new release, so we should aim to release as early as possible while ensuring we have confidence in the release.
Release Schedule
While we don't wish to repeat the OpenStack release documentation, we will point out the high level schedule, and draw attention to areas where our process is different.
Milestones
At each of the various release milestones, pay attention to what other projects are doing.
Feature Freeze
As with projects following the common release model, Kayobe uses a feature freeze period to allow the code to stabilise prior to release. There is no official feature freeze date for the cycle-trailing model, but we typically freeze around three weeks after the common feature freeze. During this time, no features should be merged to the master branch.
Before RC1
Prior to creating a release candidate and stable branch, the following tasks should be performed.
Testing
Test the code and fix at a minimum all critical issues.
Remember to use the check experimental
review comment on
a Gerrit change to trigger jobs in the experimental pipeline, which
provide increased test coverage.
Synchronise with Kolla Ansible feature flags
Clone the Kolla Ansible repository, and run the Kayobe
tools/kolla-feature-flags.sh
script:
tools/kolla-feature-flags.sh <path to kolla-ansible source>
Copy the output of the script, and replace the
kolla_feature_flags
list in
ansible/roles/kolla-ansible/vars/main.yml
.
The kolla.yml
configuration file should be updated to
match:
tools/feature-flags.py
Copy the output of the script, and replace the list of
kolla_enable_*
flags in
etc/kayobe/kolla.yml
.
Synchronise with Kolla Ansible inventory
Clone the Kolla Ansible repository, and copy across any relevant
changes. The Kayobe inventory is based on the
ansible/inventory/multinode
inventory, but split into 3
parts - top-level, components and services.
Top level
The top level inventory template is
ansible/roles/kolla-ansible/templates/overcloud-top-level.j2
.
It is heavily templated, and does not typically need to be changed. Look
out for changes in the multinode
inventory before the
[baremetal]
group.
Components
The components inventory template is
ansible/roles/kolla-ansible/templates/overcloud-components.j2
.
This includes groups in the multinode
inventory from the
[baremetal]
group down to the following text:
# Additional control implemented here. These groups allow you to control which
# services run on which hosts at a per-service level.
Services
The services inventory template is
ansible/roles/kolla-ansible/templates/overcloud-services.j2
.
This includes groups in the multinode
inventory from the
following text to the end of the file:
# Additional control implemented here. These groups allow you to control which
# services run on which hosts at a per-service level.
There are some small changes in this section which should be maintained.
Update dependencies to upcoming release
Prior to the release, we update the dependencies and upper
constraints on the master branch to use the upcoming release. This is
now quite easy to do, following the introduction of the
openstack_release
variable. This is done prior to creating
a release candidate. For example, see https://review.opendev.org/c/openstack/kayobe/+/867617.
Synchronise kayobe-config
Ensure that configuration defaults in kayobe-config
are
in sync with those under etc/kayobe
in kayobe
.
This can be done via:
rsync -a --delete kayobe/etc/kayobe/ kayobe-config/etc/kayobe
Commit the changes and submit for review.
Synchronise kayobe-config-dev
Ensure that configuration defaults in kayobe-config-dev
are in sync with those in kayobe-config
. This requires a
little more care, since some configuration options have been changed
from the defaults. Choose a method to suit you and be careful not to
lose any configuration.
Commit the changes and submit for review.
Prepare release notes
It's possible to add a prelude to the release notes for a particular
release using a prelude
section in a reno
note.
Ensure that release notes added during the release cycle are tidy and consistent. The following command is useful to list release notes added this cycle:
git diff --name-only origin/stable/<previous release> -- releasenotes/
RC1
Prior to cutting a stable branch, the master
branch
should be tagged as a release candidate. This allows the
reno
tool to determine where to stop searching for release
notes for the next release. The tag should take the following form:
<release tag>.0rc$n
, where $n
is the
release candidate number.
This should be done for each deliverable using the releases tooling. A
release candidate and stable branch defintitions should be added for
each Kayobe deliverable (kayobe
,
kayobe-config
, kayobe-config-dev
). These are
defined in deliverables/<release name>/kayobe.yaml
.
Currently the same version is used for each deliverable.
The changes should be proposed to the releases repository. For example: https://review.opendev.org/#/c/700174.
After RC1
The OpenStack proposal bot will propose changes to the new branch and the master branch. These need to be approved.
After the stable branch has been cut, the master branch can be
unfrozen and development on features for the next release can begin. At
this point it will still be using dependencies and upper constraints
from the release branch, so revert the patch created in update-dependencies-for-release
. For example, see https://review.opendev.org/701747.
Finally, set the previous release used in upgrade jobs to the new release. For example, see https://review.opendev.org/709145.
RC2+
Further release candidates may be created on the stable branch as necessary in a similar manner to RC1.
Final Releases
A release candidate may be promoted to a final release if it has no critical bugs against it.
Tags should be created for each deliverable (kayobe
,
kayobe-config
, kayobe-config-dev
). Currently
the same version is used for each.
The changes should be proposed to the releases repository. For example: https://review.opendev.org/701724.
Post-release activites
An email will be sent to the release-announce mailing list about the new release.
Continuing Development
Search for TODOs in the codebases describing tasks to be performed during the next release cycle.
Dates for each milestone in the new cycle can be found in Kolla
project's documentation <contributor/release-management.html#milestones>
.
The first action that needs to be taken is to switch Kayobe back to using the master version of its dependencies <contributor/release-management.html#r-23-development-begins>
(R-23).
Stable Releases
Stable branch releases should be made periodically for each supported stable branch, no less than once every 45 days.