1
0
mirror of https://github.com/coreos/prometheus-operator.git synced 2026-02-05 15:46:31 +01:00
Files
prometheus-operator/RELEASE.md

117 lines
6.6 KiB
Markdown
Raw Normal View History

# Release schedule
Following [Prometheus](https://github.com/prometheus/prometheus/blob/master/RELEASE.md) and [Thanos](https://github.com/thanos-io/thanos/blob/master/docs/release-process.md), this project aims for a predictable release schedule.
Release cadence of first pre-releases being cut is 6 weeks.
| Release | Date of first pre-release (year-month-day) | Release shepherd |
|---------|--------------------------------------------|-----------------------------------------|
| v0.39 | 2020-05-06 | Pawel Krupa (GitHub: @paulfantom) |
| v0.40 | 2020-06-17 | Lili Cosic (GitHub: @lilic) |
| v0.41 | 2020-07-29 | Sergiusz Urbaniak (GitHub: @s-urbaniak) |
| v0.42 | 2020-09-09 | Matthias Loibl (GitHub: @metalmatze) |
| v0.43 | 2020-10-21 | Simon Pasquier (GitHub: @simonpasquier) |
| v0.44 | 2020-12-02 | Pawel Krupa (GitHub: @paulfantom) |
| v0.45 | 2021-01-13 | Lili Cosic (GitHub: @lilic) |
| v0.46 | 2021-02-24 | Sergiusz Urbaniak (GitHub: @s-urbaniak) |
| v0.47 | 2021-04-07 | Simon Pasquier (GitHub: @simonpasquier) |
| v0.48 | 2021-05-19 | Matthias Loibl (GitHub: @metalmatze) |
| v0.49 | 2021-06-30 | Pawel Krupa (GitHub: @paulfantom) |
| v0.50 | 2021-08-11 | Pawel Krupa (GitHub: @paulfantom) |
| v0.51 | 2021-09-22 | Simon Pasquier (GitHub: @simonpasquier) |
2021-10-19 08:23:33 +02:00
| v0.52 | 2021-11-03 | Filip Petkovski (Github: @fpetkovski) |
| v0.53 | 2021-12-15 | **searching for volunteer** |
2017-11-17 11:57:31 +01:00
# How to cut a new release
> This guide is strongly based on the [Prometheus release instructions](https://github.com/prometheus/prometheus/blob/master/RELEASE.md).
2017-11-17 11:57:31 +01:00
## Branch management and versioning strategy
We use [Semantic Versioning](http://semver.org/).
2018-09-28 11:41:27 +02:00
We maintain a separate branch for each minor release, named `release-<major>.<minor>`, e.g. `release-1.1`, `release-2.0`.
2017-11-17 11:57:31 +01:00
The usual flow is to merge new features and changes into the master branch and to merge bug fixes into the latest release branch. Bug fixes are then merged into master from the latest release branch. The master branch should always contain all commits from the latest release branch.
If a bug fix got accidentally merged into master, cherry-pick commits have to be created in the latest release branch, which then have to be merged back into master. Try to avoid that situation.
Maintaining the release branches for older minor releases happens on a best effort basis.
## Update Go dependencies
2017-11-17 11:57:31 +01:00
A couple of days before the release, consider submitting a PR against the `master` branch to update the Go dependencies.
2020-09-25 09:54:07 +02:00
```bash
make update-go-deps
```
## Update operand versions
2020-09-25 09:54:07 +02:00
A couple of days before the release, update the [default versions](https://github.com/prometheus-operator/prometheus-operator/blob/f6ce472ecd6064fb6769e306b55b149dfb6af903/pkg/operator/defaults.go#L20-L31) of Prometheus, Alertmanager and Thanos if newer versions are available.
2020-09-25 09:54:07 +02:00
## Prepare your release
2017-11-17 11:57:31 +01:00
For a new major or minor release, work from the `master` branch. For a patch release, work in the branch of the minor release you want to patch (e.g. `release-0.43` if you're releasing `v0.43.2`).
Bump the version in the `VERSION` file in the root of the repository.
2017-11-17 11:57:31 +01:00
2020-09-25 09:56:52 +02:00
A number of files have to be re-generated, this is automated with the following make target:
2017-11-17 11:57:31 +01:00
```bash
make clean generate
2017-11-17 11:57:31 +01:00
```
2020-12-10 18:06:00 +00:00
Bump the version of the `pkg/apis/monitoring` and `pkg/client` packages in `go.mod`:
```bash
go mod edit -require "github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring@v$(< VERSION)" pkg/client/go.mod
go mod edit -require "github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring@v$(< VERSION)"
go mod edit -require "github.com/prometheus-operator/prometheus-operator/pkg/client@v$(< VERSION)"
```
2017-11-17 11:57:31 +01:00
Now that all version information has been updated, an entry for the new version can be added to the `CHANGELOG.md` file.
Entries in the `CHANGELOG.md` are meant to be in this order:
* `[CHANGE]`
* `[FEATURE]`
* `[ENHANCEMENT]`
* `[BUGFIX]`
Create a PR for the changes to be reviewed.
2017-11-17 11:57:31 +01:00
## Publish the new release
2017-11-17 11:57:31 +01:00
For new minor and major releases, create the `release-<major>.<minor>` branch starting at the PR merge commit.
2017-11-17 11:57:31 +01:00
From now on, all work happens on the `release-<major>.<minor>` branch.
2017-11-17 11:57:31 +01:00
2020-12-10 18:06:00 +00:00
Tag the new release with a tag named `v<major>.<minor>.<patch>`, e.g. `v2.1.3`. Note the `v` prefix. Tag also the `github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring` module with `pkg/apis/monitoring/v<major>.<minor>.<patch>` and the `github.com/prometheus-operator/prometheus-operator/pkg/client` module with `pkg/client/v<major>.<minor>.<patch>`. You can do the tagging on the commandline:
2017-11-17 11:57:31 +01:00
```bash
tag="v$(< VERSION)"
git tag -s "${tag}" -m "${tag}"
git tag -s "pkg/apis/monitoring/${tag}" -m "pkg/apis/monitoring/${tag}"
git tag -s "pkg/client/${tag}" -m "pkg/client/${tag}"
git push origin "${tag}" "pkg/apis/monitoring/${tag}" "pkg/client/${tag}"
2017-11-17 11:57:31 +01:00
```
Signed tag with a GPG key is appreciated, but in case you can't add a GPG key to your Github account using the following [procedure](https://help.github.com/articles/generating-a-gpg-key/), you can replace the `-s` flag by `-a` flag of the `git tag` command to only annotate the tag without signing.
Our CI pipeline will automatically push the container images to [quay.io](https://quay.io/organization/prometheus-operator).
2017-11-17 11:57:31 +01:00
Go to https://github.com/prometheus-operator/prometheus-operator/releases/new, associate the new release with the before pushed tag, paste in changes made to `CHANGELOG.md` and click "Publish release".
2017-11-17 11:57:31 +01:00
For patch releases, submit a pull request to merge back the release branch into the `master` branch.
## Update website
Bump the operator's version in the [website](https://github.com/prometheus-operator/website/blob/main/data/prometheusOperator.json) repository.
## Update kube-prometheus
Bump the versions of `github.com/prometheus-operator/prometheus-operator` in [prometheus-operator/kube-prometheus](https://github.com/prometheus-operator/kube-prometheus) by triggering the ["Upgrade to latest versions"](https://github.com/prometheus-operator/kube-prometheus/actions/workflows/versions.yaml) workflow.
2017-11-17 11:57:31 +01:00
Take a breath. You're done releasing.