08e2d551e62f9e29be38e9f97044663fb6586237
[octopus.git] / docs / opnfv-stablebranch.rst
1 =============
2 Stable Branch
3 =============
4 This document describes the way of working with stable branches and doing maintenance.
5
6 The page is derived from https://wiki.openstack.org/wiki/StableBranch , simplified and adapted to OPNFV.
7
8 It was discussed on TSC on June 30, 2015 with minor comments.
9
10 At this time only Arno release maintenance is covered.
11
12 Overview
13 --------
14
15 The stable branch is intended to be a safe source of fixes for high impact bugs and security issues which have been fixed on master since a given release. It allows users of release (stable) versions to benefit from the ongoing bugfix work after the release.
16
17 Official point releases for each project are published from the branch on a per need basis, as decided by the TSC. In later stages, a regular cadence for point releases may be introduced.
18
19 It's possible to check current maintained versions in the releases page. At this time only Arno is maintained.
20
21 OPNFV's stable branch policy borrows much from prior art, in particular from OpenStack.
22
23 In general all fixes should be made on the main branch and cherry picked to stable. If there is a case where the fix is not able to be merged backwards only then we would need to do any work directly on stable. The documented method for getting a fix into stable should be by a cherry-pick process.
24
25 Stable branch policy
26 --------------------
27
28 Appropriate fixes
29 ~~~~~~~~~~~~~~~~~
30
31 Only a limited class of changes are appropriate for inclusion on the stable branch.
32
33 A number of factors must be weighed when considering a change:
34
35 - **The risk of regression** - even the tiniest changes carry some risk of
36   breaking something and we really want to avoid regressions on the stable branch
37 - **The user visible benefit** - are we fixing something that users might actually
38   notice and, if so, how important is it?
39 - **How self-contained the fix is** - if it fixes a significant issue but also
40   refactors a lot of code, it's probably worth thinking about what a less risky
41   fix might look like
42 - Whether the fix is **already on master - a change must be a **backport** of a change
43   already merged onto master, unless the change simply does not make sense on master
44   (e.g. because of a change of architecture).
45 - If there is a suitable **work-around** for a bug, normally there won't be a fix on stable.
46 - Since OPNFV is using several upstream projects, typically fixes in the upstream projects will apply as fixes for OPNFV. Therefore complete **maintenance revisions of the upstream projects** (i.e. minor versions) can be used as suitable backports for OPNFV  maintenance releases.
47 - Since OPNFV is a midstream integration effort, also test cases might be suitable backports
48   in case they are related to critical bugs found in stable.
49
50 Rules to maintain multiple versions and exceptions will be added later.
51
52 The stable-mtc team needs to balance the risk of any given patch with the value that it will provide to users of the stable branch. A large, risky patch for a major data corruption issue might make sense. As might a trivial fix for a fairly obscure error handling case.
53
54 The stable-mtc team also will handle exceptions, of which the most common will be that a fix on stable needs to be different to the fix on master due to some other changes on master (e.g. architectural).
55
56 Some types of changes are completely forbidden:
57
58 - New features
59 - Changes to the external APIs
60 - Changes to the notification definitions
61 - DB schema changes
62 - Incompatible config file changes
63 - Changes including a version upgrade of an upstream component of OPNFV
64   (since this will typically violate the above points)
65
66 Support phases
67 ~~~~~~~~~~~~~~
68
69 Support phases will be introduced at a later time
70
71 Review of fixes
72 ~~~~~~~~~~~~~~~
73
74 Each backported commit proposed to gerrit should be reviewed and +2ed by two Arno-stable-maint members before it is approved. Where a stable-maint member has backported a fix, a single other +2 is sufficient for approval.
75
76 If unsure about the technical details of a given fix, stable-maint members should consult with the appropriate developers from the affected projects for a more detailed technical review.
77
78 If unsure if a fix is appropriate for the stable branch, at this time the TSC will do the final decision.
79
80 Security fixes
81 ~~~~~~~~~~~~~~
82
83 Fixes for embargoed security issues receive special treatment. These should be reviewed in advance of disclosure by committers and stable-maint. At the time of coordinated public disclosure, the fix is proposed simultaneously to master and the stable branches and immediately approved.
84
85 Processes
86 ---------
87
88 Proposing fixes
89 ~~~~~~~~~~~~~~~
90
91 Anyone can propose a cherry-pick to the stable-maint team.
92
93 One way is that if a bugfix on master looks like a good candidate for backporting - e.g. if it's a significant bug with the revious release - then just nominating the bug for Arno maintenance will bring it to the attention of the maintainers.
94
95 If you don't have the appropriate permissions to nominate the bug, then send an email via the user list.
96
97 The best way to get the patch merged in timely manner is to send it backported by yourself. To do so, you may try to use "Cherry Pick To" button in Gerrit UI for the original patch in master. Gerrit will take care of creating a new review, modifying commit message to include 'cherry-picked from \85' line etc.
98
99 If the patch you're proposing will not cherry-pick cleanly, you can help by resolving the conflicts yourself and proposing the resulting patch. Please keep Conflicts lines in the commit message to help reviewers! You can use git-review to propose a change to the stable branch with::
100
101    $> git log (find out the commit id of the patch that you want to backport from "git log" output)
102    $> git checkout stable/arno
103    $> git cherry-pick -x $master_commit_d
104    $> git review stable/arno
105
106 Note: cherry-pick -x option includes 'cherry-picked from \85' line in the commit message which is required to avoid Gerrit bug
107
108 Failing all that, just ping one of the team and mention that you think the bug/commit is a good candidate.
109
110 Change-Ids
111 ~~~~~~~~~~
112
113 When cherry-picking a commit, keep the original Change-Id and gerrit will show a separate review for the stable branch while still allowing you to use the Change-Id to see all the reviews associated with it.
114
115 Hint: Change-Id line must be in the last paragraph. Conflicts in the backport: add a new paragraph, creating a new Change-Id but you can avoid that by moving conflicts above the paragraph with Change-Id line or removing empty lines to make a single paragraph.
116
117 Email Notifications
118 ~~~~~~~~~~~~~~~~~~~
119
120 If you want to be notified of these patches you can create a watch on this screen:
121 https://gerrit.opnfv.org/gerrit/#/settings/projects
122 click "Watched Projects"
123
124 Project Name: All-Projects
125
126 Only If: branch:stable/arno
127
128 Then check the "Email Notifications - New Changes" checkbox. That will cause gerrit to send an email whenever a matching change is proposed, and better yet, the change shows up in your 'watched changes' list in gerrit.
129
130 Bug Tags
131 ~~~~~~~~
132
133 will be introduced when we see the need.
134
135 CI Pipeline
136 ~~~~~~~~~~~
137
138 For Arno release the jobs will be run once per day per installer (Fuel and Foreman) on stable/arno branch. Since this is in addition to the jobs for master branch and jobs have long run time, this might need re-evaluation as we go on.
139
140 The artifacts arno/stable jobs produced are stored in the new directoies on artifacts.opnfv.org.
141
142 The artifacts produced by daily jobs would be stored
143   For stable/arno, the storage locations will be <project_name>/arno/<artifact_name>.iso
144 The docs produced by daily and merge jobs would be stored
145   For stable/arno, the storage locations will be <project_name>/arno/docs/<document_name>
146
147 No changes in overall functionality in merge and verify jobs: they will continue doing builds only ::
148
149     genesis-fuel-verify-master, genesis-fuel-verify-stable-arno,
150     genesis-fuel-merge-master, genesis-fuel-merge-stable-arno,
151     genesis-foreman-verify-master, genesis-foreman-verify-stable-arno,
152     genesis-foreman-merge-master, genesis-foreman-merge-stable-arno
153
154
155 Team organization
156 -----------------
157
158 Project specific tasks
159 ~~~~~~~~~~~~~~~~~~~~~~
160
161 Each of the 5 projects that contributed to Arno will dedicate some committers which would be in charge of reviewing backports for their project, following the stable branch policy. It is in the responsibility of each project how to select those committers (e.g. vote in the team).
162
163 The group of these committers here are sometimes called the "stable branch maintenance team" or "stable-mtc" without this being necessarily a team with own organization.
164
165 Stable branch management
166 ~~~~~~~~~~~~~~~~~~~~~~~~
167
168 Stable branches are less exercised than master branches, and they may get broken by external events.
169
170 Therefore a group of committers, the "stable branch maintenance team" (stable-mtc) is tasked with specific stable branch support, making sure the branch stays in good shape and remains usable at all times. They monitor periodic jobs failures and enlist the help of others in order to fix the branches in case of breakage. They should also raise flags if for some reason they are blocked and don't receive enough support, in which case early abandon of the branch will be considered.
171
172 The stable-mtc is responsible for the enforcement of the Stable Branch policy. Initially it is composed of a release manager and at least one committer of each of the participating projects and will have similar organization and rights as OPNFV project teams. It will be granting exceptions for all questionable backports raised by projects, providing backports reviews help everywhere, and educating projects members on the stable branch policy.
173
174 The stable-mtc will propose to TSC to decide on point releases from the stable branch. Preparation of the point release will be described in a second step. The stable-mtc can also propose to TSC to decide to abandon maintenance of the release.
175
176 When a new OPNFV version is released, a stable-mtc team for that project will start. At that time, the earlier maintenance version will go to a phase with less support. Details will be defined later.
177
178 Joining the team
179 ~~~~~~~~~~~~~~~~
180
181 Existing committers are greatly encouraged to join the stable-mtc in order to help with reviewing backports, judging their appropriateness for the stable branch and approving them.
182
183 We're really keen to add more folks to the stable Arno stable-mtc to help out with reviews.
184
185 All you really need is some time and the ability to apply the "safe source of high impact fixes" and "must be fixed on master first" policies. It mostly comes down to having a good sense of the risk vs benefit of applying a backport to the branch.
186
187 If you'd like to join the team, you can start by simply [+-]1ing stable branch reviews. It's best if you can add some brief thoughts to your review on why you think the fix is suitable for stable so that we know how you're applying the policy.
188
189 Same as in normal OPNFV projects, stable-mtc team will use committer votes for some decisions like proposing a new point release to TSC.