blob: 90ccc974078a83f23f947d085891fac4028cdf87 [file] [log] [blame]
Zack Williams16042b62020-03-29 22:03:16 -07001Release Process
2===============
3
4This document describes the technical steps to create a new release of VOLTHA.
5
6Creating the initial release
7----------------------------
8
9A release branch name is decided on, where all tagged releases will be created
10in each repo. Historically this has been ``voltha`` followed by the Major and
11Minor `Semver <https://semver.org/>`_ version, such as ``voltha-2.2``,
12``voltha-2.3``, etc. The rest of this section will use the ``voltha-2.3``
13release as an example:
14
15A branch named ``voltha-2.3`` is created on the voltha-helm-charts repo. Release
16candidates will be created of each chart for the ``2.3`` release. The action that
17indicates the creation of the ``2.3`` release is to changing the `voltha
18<https://gerrit.opencord.org/gitweb?p=voltha-helm-charts.git;a=tree;f=voltha>`_
19helm chart, and adapter charts with version: ``2.3.0`` specified in ``Chart.yaml``
20within the `voltha-helm-charts
21<https://gerrit.opencord.org/gitweb?p=voltha-helm-charts.git;a=summary>`_ repo.
22
23Accompanying tests for 2.3 are created by creating a branch created named
24``voltha-2.3`` on the `voltha-system-tests
25<https://gerrit.opencord.org/gitweb?p=voltha-system-tests.git;a=summary>`_
26repo. At release we create a tag ``2.3.0`` on that branch.
27
28These two repos are the only ones that receive a ``2.3.0`` tag. Other repos that
29contain individual components have their own versioning/release cadence, driven
30by SemVer.
31
32For all other repos that create components that go into the release, tags will
33be created and ``voltha-2.3`` branches are created starting from the tag.
34
35To allow for future patches to go into the repo in a way that does not conflict
36with the patch version, each component repo's ``VERSION`` file should have it's
37Minor version increased. (ex: ``1.1.x`` to ``1.2.0-dev``, so future ``1.1.x+1``
38component release can easily be created).
39
40Testing CI jobs will be created that check out the voltha-2.3 branch of the
41`voltha-system-tests
42<https://gerrit.opencord.org/gitweb?p=voltha-system-tests.git;a=summary>`_
43repo, testing the charts as checked out with the ``voltha-2.3`` branch of
44``voltha-helm-charts``. Patches on the ``voltha-2.3`` branch of components
45that build containers will need to be changed to rebuild those containers and
46test with the ``voltha-2.3`` branch of helm charts.
47
48Creating point releases on a stable branch
49------------------------------------------
50
51If a fix is only needed to the helm charts:
52
53- Make the fix on the master branch of voltha-helm-charts (assuming that it is
54 required in both places).
55
56- After the master tests pass, manually cherry-pick the fix to the voltha-2.3
57 branch (the Chart.yaml version would be different, requiring the manual
58 step).
59
60- Cherry-picked patchsets on that branch will be checked by the voltha-2.3
61 branch of tests.
62
63- When it passes, submitting the change will make a new 2.3.x release
64
65If a fix is needed to the components/containers that are included by the helm
66charts:
67
68- Develop a fix to the issue on the master branch, get it approved after
69 passing master tests.
70
71- Manually cherry-pick to the voltha-2.3 branch of the component, incrementing
72 the patch version, and test with the voltha-2.3 version of
73 voltha-system-tests and helm charts.
74
75- Update helm charts and go through the helm chart update process above.
76
77
78What changes can be brought into a stable branch?
79-------------------------------------------------
80
81For a change to be suitable for a stable branch, it has to be either a:
82
83- Bug
84- Non-code fix (documentation, build process)
85- Security or compatibility updates (problem found in a dependency, upstream
86 software EOL, etc.)
87
88Process to create a change on a stable branch
89
90- Add a Jira item, with the ``Affects Version: ``VOLTHA vX.X`` set
91- Discuss and get consensus on the issue via the Voltha mailing list, in the
92 all-Voltha meeting, or on Slack about whether this fix should be brought to a
93 stable branch
94- Create a fix, and go through the integration process to create a new point
95 release.
96
97What is a bug?
98""""""""""""""
99
100- Anything that causes a functional regression test (Robot tests) to fail
101- Not a new feature!
102- Severe issue (causes data loss or crash), or frequently occurring are
103 generally more likely to be accepted.
104- Issues that are merely annoying and don't cause data loss or a crash, or
105 happen very infrequently or can't be reproduced may not be.
106
107As a best practice, please add tests when bugs are found, if tests don't
108currently cover the particular bug. Examples:
109
110- Robot tests for integration-related issues
111- Unit tests for code-level issues
112
Andrea Campanella542291b2021-10-27 16:18:46 +0200113API Deprecation policy
114----------------------
Zack Williams16042b62020-03-29 22:03:16 -0700115
Andrea Campanella542291b2021-10-27 16:18:46 +0200116VOLTHA has in place a 2 release deprecation policy. Starting from ``voltha-2.9`` the APIs that are marked as deprecated
117are automatically removed after 2 releases.
118As an example an API marked as deprecated in ``voltha-2.9`` will be removed after the ``voltha-2.10`` release
119and will not be present anymore in ``voltha-2.11``.
120
121The removal process is intended to happen automatically, meaning no further notice of removal needs to be sent out.
122The deprecated objects and APIs are marked in the `voltha-protos <https://github.com/opencord/voltha-protos>`_ using the
123``deprecated`` construct from protobuf, as per `specification <https://developers.google.com/protocol-buffers/docs/proto3>`_.
124An example is ``int32 old_field = 6 [deprecated = true];``
125
126
127Repos (lazily) branched for each release
128----------------------------------------
Zack Williams16042b62020-03-29 22:03:16 -0700129
130Charts
131""""""
132
133- voltha-helm-charts
134
135Testing
136"""""""
137
138- voltha-system-tests
Andrea Campanella542291b2021-10-27 16:18:46 +0200139- pod-configs
Zack Williams16042b62020-03-29 22:03:16 -0700140
141Tools
142"""""
143
144- bbsim (also creates containers)
145- voltctl
146
147ONOS Apps
148"""""""""
149
150- aaa
151- dhcpl2relay
Andrea Campanella542291b2021-10-27 16:18:46 +0200152- igmpproxy
Zack Williams16042b62020-03-29 22:03:16 -0700153- kafka
154- mcast
155- olt
156- sadis
Andrea Campanella542291b2021-10-27 16:18:46 +0200157- mac-learning
Zack Williams16042b62020-03-29 22:03:16 -0700158
159Libraries
160"""""""""
161
Zack Williams16042b62020-03-29 22:03:16 -0700162- voltha-lib-go
163- voltha-protos
164
165Components (which build containers)
166"""""""""""""""""""""""""""""""""""
167- ofagent-go
168- voltha-go (rw_core)
169- voltha-openolt-adapter
Andrea Campanellac18d1182021-09-10 12:01:38 +0200170- voltha-openonu-adapter-go
Zack Williams16042b62020-03-29 22:03:16 -0700171- voltha-onos (includes ONOS Apps)
172