]> granicus.if.org Git - icinga2/blob - RELEASE.md
Service: reduce severity while host is down
[icinga2] / RELEASE.md
1 # Release Workflow <a id="release-workflow"></a>
2
3 #### Table of Content
4
5 - [1. Preparations](#preparations)
6   - [1.1. Issues](#issues)
7   - [1.2. Backport Commits](#backport-commits)
8   - [1.3. Authors](#authors)
9 - [2. Version](#version)
10 - [3. Changelog](#changelog)
11 - [4. Git Tag](#git-tag)
12 - [5. Package Builds](#package-builds)
13   - [5.1. RPM Packages](#rpm-packages)
14   - [5.2. DEB Packages](#deb-packages)
15 - [6. Build Server](#build-server)
16 - [7. Release Tests](#release-tests)
17 - [8. GitHub Release](#github-release)
18 - [9. Chocolatey](#chocolatey)
19 - [10. Post Release](#post-release)
20   - [10.1. Online Documentation](#online-documentation)
21   - [10.2. Announcement](#announcement)
22   - [10.3. Project Management](#project-management)
23
24 ## Preparations <a id="preparations"></a>
25
26 Specify the release version.
27
28 ```
29 VERSION=2.10.4
30 ```
31
32 Add your signing key to your Git configuration file, if not already there.
33
34 ```
35 vim $HOME/.gitconfig
36
37 [user]
38         email = michael.friedrich@icinga.com
39         name = Michael Friedrich
40         signingkey = D14A1F16
41 ```
42
43 ### Issues <a id="issues"></a>
44
45 Check issues at https://github.com/Icinga/icinga2
46
47 ### Backport Commits <a id="backport-commits"></a>
48
49 For minor versions you need to manually backports any and all commits from the
50 master branch which should be part of this release.
51
52 ### Authors <a id="authors"></a>
53
54 Update the [.mailmap](.mailmap) and [AUTHORS](AUTHORS) files:
55
56 ```
57 git checkout master
58 git log --use-mailmap | grep '^Author:' | cut -f2- -d' ' | sort | uniq > AUTHORS
59 ```
60
61 ## Version <a id="version"></a>
62
63 Update the version:
64
65 ```
66 sed -i "s/Version: .*/Version: $VERSION/g" VERSION
67 ```
68
69 ## Changelog <a id="changelog"></a>
70
71 Update the [CHANGELOG.md](CHANGELOG.md) file.
72
73 ### Requirements
74
75 Export these environment variables:
76
77 ```
78 export ICINGA_GITHUB_AUTH_USERNAME='user'
79 export ICINGA_GITHUB_AUTH_TOKEN='token'
80 export ICINGA_GITHUB_PROJECT='icinga/icinga2'
81 ```
82
83 ### Generation
84
85 **Close the version on [GitHub](https://github.com/Icinga/icinga2/milestones).**
86
87 Run the script which updates the [CHANGELOG.md](CHANGELOG.md) file.
88
89 ```
90 ./changelog.py
91 git diff
92 ```
93
94 ## Git Tag  <a id="git-tag"></a>
95
96 > **Major Releases**: Commit these changes to the `master` branch.
97 >
98 > **Minor Releases**: Commit changes to the `support` branch.
99
100 ```
101 git commit -v -a -m "Release version $VERSION"
102 ```
103
104 Create a signed tag (tags/v<VERSION>) on the `master` branch (for major
105 releases) or the `support` branch (for minor releases).
106
107 ```
108 git tag -s -m "Version $VERSION" v$VERSION
109 ```
110
111 Push the tag:
112
113 ```
114 git push --tags
115 ```
116
117 **For major releases:** Create a new `support` branch:
118
119 ```
120 git checkout master
121 git push
122
123 git checkout -b support/2.11
124 git push -u origin support/2.11
125 ```
126
127 **For minor releases:** Push the support branch, cherry-pick the release commit
128 into master and merge the support branch:
129
130 ```
131 git push -u origin support/2.10
132 git checkout master
133 git cherry-pick support/2.10
134 git merge --strategy=ours support/2.10
135 git push origin master
136 ```
137
138 ## Package Builds  <a id="package-builds"></a>
139
140 ### RPM Packages  <a id="rpm-packages"></a>
141
142 ```
143 git clone git@github.com:icinga/rpm-icinga2.git && cd rpm-icinga2
144 ```
145
146 #### Branch Workflow
147
148 **Major releases** are branched off `master`.
149
150 ```
151 git checkout master && git pull
152 ```
153
154 **Bugfix releases** are created in the `release` branch and later merged to master.
155
156 ```
157 git checkout release && git pull
158 ```
159
160 #### Release Commit
161
162 Set the `Version`, `Revision` and `changelog` inside the spec file.
163
164 ```
165 VERSION=2.10.4
166
167 sed -i "s/Version: .*/Version: $VERSION/g" icinga2.spec
168
169 vim icinga2.spec
170
171 %changelog
172 * Tue Mar 19 2019 Michael Friedrich <michael.friedrich@icinga.com> 2.10.4-1
173 - Update to 2.10.4
174 ```
175
176 ```
177 git commit -av -m "Release $VERSION-1"
178 git push
179 ```
180
181 **Note for major releases**: Update release branch to latest.
182
183 ```
184 git checkout release && git pull && git merge master && git push
185 ```
186
187 **Note for minor releases**: Cherry-pick the release commit into master.
188
189 ```
190 git checkout master && git pull && git cherry-pick release && git push
191 ```
192
193
194 ### DEB Packages  <a id="deb-packages"></a>
195
196 ```
197 git clone git@github.com:icinga/deb-icinga2.git && cd deb-icinga2
198 ```
199
200 #### Branch Workflow
201
202 **Major releases** are branched off `master`.
203
204 ```
205 git checkout master && git pull
206 ```
207
208 **Bugfix releases** are created in the `release` branch and later merged to master.
209
210 ```
211 git checkout release && git pull
212 ```
213
214 #### Release Commit
215
216 Set the `Version`, `Revision` and `changelog` by using the `dch` helper.
217
218 ```
219 VERSION=2.10.4
220
221 ./dch $VERSION-1 "Update to $VERSION"
222 ```
223
224 ```
225 git commit -av -m "Release $VERSION-1"
226 git push
227 ```
228
229
230 **Note for major releases**: Update release branch to latest.
231
232 ```
233 git checkout release && git pull && git merge master && git push
234 ```
235
236 **Note for minor releases**: Cherry-pick the release commit into master.
237
238 ```
239 git checkout master && git pull && git cherry-pick release && git push
240 ```
241
242 #### DEB with dch on macOS
243
244 ```
245 docker run -v `pwd`:/mnt/packaging -ti ubuntu:bionic bash
246
247 apt-get update && apt-get install git ubuntu-dev-tools vim -y
248 cd /mnt/packaging
249
250 git config --global user.name "Michael Friedrich"
251 git config --global user.email "michael.friedrich@icinga.com"
252
253 VERSION=2.10.4
254
255 ./dch $VERSION-1 "Update to $VERSION"
256 ```
257
258
259 ## Build Server <a id="build-server"></a>
260
261 * Verify package build changes for this version.
262 * Test the snapshot packages for all distributions beforehand.
263 * Build the newly created Git tag for Debian/RHEL/SuSE.
264   * Wait until all jobs have passed and then publish them one by one with `allow_release`
265 * Build the newly created Git tag for Windows: `refs/tags/v2.10.0` as source and `v2.10.0` as package name.
266
267 ## Release Tests  <a id="release-tests"></a>
268
269 * Test DB IDO with MySQL and PostgreSQL.
270 * Provision the vagrant boxes and test the release packages.
271 * Test the [setup wizard](https://packages.icinga.com/windows/) inside a Windows VM.
272 * Start a new docker container and install/run icinga2.
273
274 ### CentOS
275
276 ```
277 docker run -ti centos:latest bash
278
279 yum -y install https://packages.icinga.com/epel/icinga-rpm-release-7-latest.noarch.rpm
280 yum -y install icinga2
281 icinga2 daemon -C
282 ```
283
284 ### Debian
285
286 ```
287 docker run -ti debian:stretch bash
288
289 apt-get update && apt-get install -y wget curl gnupg apt-transport-https
290
291 DIST=$(awk -F"[)(]+" '/VERSION=/ {print $2}' /etc/os-release); \
292  echo "deb http://packages.icinga.com/debian icinga-${DIST} main" > \
293  /etc/apt/sources.list.d/${DIST}-icinga.list
294  echo "deb-src http://packages.icinga.com/debian icinga-${DIST} main" >> \
295  /etc/apt/sources.list.d/${DIST}-icinga.list
296
297 curl https://packages.icinga.com/icinga.key | apt-key add -
298 apt-get -y install icinga2
299 icinga2 daemon
300 ```
301
302 ## GitHub Release  <a id="github-release"></a>
303
304 Create a new release for the newly created Git tag: https://github.com/Icinga/icinga2/releases
305
306 ## Chocolatey  <a id="chocolatey"></a>
307
308 Navigate to the git repository on your Windows box which
309 already has chocolatey installed. Pull/checkout the release.
310
311 Create the nupkg package (or use the one generated on https://packages.icinga.com/windows):
312
313 ```
314 cpack
315 ```
316
317 Fetch the API key from https://chocolatey.org/account and use the `choco push`
318 command line.
319
320 ```
321 choco apikey --key xxx --source https://push.chocolatey.org/
322
323 choco push Icinga2-v2.10.0.nupkg --source https://push.chocolatey.org/
324 ```
325
326
327 ## Post Release  <a id="post-release"></a>
328
329 ### Online Documentation  <a id="online-documentation"></a>
330
331 Navigate to `puppet-customer/icinga.git` and do the following steps:
332
333 #### Testing
334
335 ```
336 git checkout testing && git pull
337 vim files/var/www/docs/config/icinga2-latest.yml
338
339 git commit -av -m "icinga-web1: Update docs for Icinga 2"
340
341 git push
342 ```
343
344 SSH into icinga-web1 and do a manual Puppet dry run with the testing environment.
345
346 ```
347 puppet agent -t --environment testing --noop
348 ```
349
350 Once succeeded, continue with production deployment.
351
352 #### Production
353
354 ```
355 git checkout master && git pull
356 git merge testing
357 git push
358 ```
359
360 SSH into icinga-web2 and do a manual Puppet run from the production environment (default).
361
362 ```
363 puppet agent -t
364 ```
365
366 ### Announcement  <a id="announcement"></a>
367
368 * Create a new blog post on [icinga.com/blog](https://icinga.com/blog) including a featured image
369 * Create a release topic on [community.icinga.com](https://community.icinga.com)
370 * Release email to team
371
372 ### Project Management  <a id="project-management"></a>
373
374 * Add new minor version on [GitHub](https://github.com/Icinga/icinga2/milestones).