Signed-off-by: Artem Navoiev <tenmozes@gmail.com>
14 KiB
sort | weight | title | menu | aliases | |||||||
---|---|---|---|---|---|---|---|---|---|---|---|
30 | 30 | Release process guidance |
|
|
Release process guidance
Pre-reqs
- Make sure you have enterprise remote configured
git remote add enterprise <url>
- Make sure you have singing key configured
- Make sure you have github token with at least
read:org, repo, write:packages
permissions exported underGITHUB_TOKEN
env variable. You can create token here - Make sure you're authorized for pushing docker images
For MacOS users
Make sure you have GNU version of utilities zip
, tar
, sha256sum
. To install them run the following commands:
brew install coreutils
brew install gnu-tar
export PATH="/usr/local/opt/coreutils/libexec/gnubin:$PATH"
Docker may need additional configuration changes:
docker buildx create --use --name=qemu
docker buildx inspect --bootstrap
For ARM arch (M1/M2 processors) additionally configure docker with preferred platform:
export DOCKER_DEFAULT_PLATFORM=linux/amd64
By default, docker on MacOS has limited amount of resources (CPU, mem) to use. Bumping the limits may significantly improve build speed.
Release version and Docker images
- Make sure all the changes are documented in CHANGELOG.md. Ideally, every change must be documented in the commit with the change. Alternatively, the change must be documented immediately after the commit, which adds the change.
- Make sure all the changes are synced between
master
,cluster
,enterprise-single-node
andenteprise-cluster
branches. Changes in these branches must be synced immediately after they are commited in at least a single branch. - Make sure that the release branches have no security issues.
- Update release versions if needed in SECURITY.md.
- Add
(available starting from v1.xx.y)
line to feature docs introduced in the upcoming release. - Cut new version in CHANGELOG.md and make it merged. See example in this commit.
- Cherry-pick bug fixes relevant for LTS releases.
- Make sure you get all changes fetched
git fetch --all
. - Create the following release tags:
git tag -s v1.xx.y
inmaster
branchgit tag -s v1.xx.y-cluster
incluster
branchgit tag -s v1.xx.y-enterprise
inenterprise-single-node
branchgit tag -s v1.xx.y-enterprise-cluster
inenterprise-cluster
branch
- Run
TAG=v1.xx.y make publish-release
. This command performs the following tasks: a) Build and package binaries in*.tar.gz
release archives with the corresponding_checksums.txt
files insidebin
directory. This step can be run manually with the commandmake release
from the needed git tag. b) Build and publish multi-platform Docker images for the givenTAG
,TAG-cluster
,TAG-enterprise
andTAG-enterprise-cluster
. The multi-platform Docker image is built for the following platforms:- linux/amd64
- linux/arm64
- linux/arm
- linux/ppc64le
- linux/386
This step can be run manually with the command
make publish
from the needed git tag.
- Push the tags
v1.xx.y
andv1.xx.y-cluster
created at step 8 to public GitHub repository at https://github.com/VictoriaMetrics/VictoriaMetrics. Push the tagsv1.xx.y
,v1.xx.y-cluster
,v1.xx.y-enterprise
andv1.xx.y-enterprise-cluster
to the corresponding branches in private repository. Important note: do not push enterprise tags to public GitHub repository - they must be pushed only to private repository. - Run
TAG=v1.xx.y make github-create-release github-upload-assets
. This command performs the following tasks: a) Create draft GitHub release with the nameTAG
. This step can be run manually with the commandTAG=v1.xx.y make github-create-release
. The release id is stored at/tmp/vm-github-release
file. b) Upload all the binaries and checksums created at step9a
to that release. This step can be run manually with the commandmake github-upload-assets
. It is expected that the needed release id is stored at/tmp/vm-github-release
file, which must be created at the stepa
. If the upload process is interrupted by any reason, then the following recovery steps must be performed:- To delete the created draft release by running the command
make github-delete-release
. This command expects that the id of the release to delete is located at/tmp/vm-github-release
file created at the stepa
. - To run the command
TAG=v1.xx.y make github-create-release github-upload-assets
, so new release is created and all the needed assets are re-uploaded to it.
- To delete the created draft release by running the command
- Go to https://github.com/VictoriaMetrics/VictoriaMetrics/releases and verify that draft release with the name
TAG
has been created and this release contains all the needed binaries and checksums. - Update the release description with the content of CHANGELOG for this release.
- Publish release by pressing "Publish release" green button in GitHub's UI.
- Bump version of the VictoriaMetrics cluster in the sandbox environment by opening and merging PR.
- Bump VictoriaMetrics version at
deployment/docker/docker-compose.yml
and atdeployment/docker/docker-compose-cluster.yml
. - Follow the instructions in release follow-up.
Building snap package
pre-requirements:
- snapcraft binary, can be installed with commands:
for MacOS
brew install snapcraft
and install multipass, for Ubuntu -sudo snap install snapcraft --classic
- exported snapcraft login to
~/.snap/login.json
withsnapcraft export-login login.json && mkdir -p ~/.snap && mv login.json ~/.snap/
- already created release at github (it operates
git describe
version, so git tag must be annotated).
- checkout to the latest git tag for single-node version.
- execute
make release-snap
- it must build and upload snap package. - promote release to current, if needed manually at release page snapcraft-releases
Public Announcement
- Publish message in Slack at https://victoriametrics.slack.com
- Post at Twitter at https://twitter.com/MetricsVictoria
- Post in Reddit at https://www.reddit.com/r/VictoriaMetrics/
- Post in LinkedIn at https://www.linkedin.com/company/victoriametrics/
- Publish message in Telegram at https://t.me/VictoriaMetrics_en and https://t.me/VictoriaMetrics_ru1
- Publish message in Google Groups at https://groups.google.com/forum/#!forum/victorametrics-users
Operator
The operator repository https://github.com/VictoriaMetrics/operator/
Bump the version of images
- Bump
Version
field in fileinternal/config/config.go
with new release version for:vmalert
inBaseOperatorConf.VMAlertDefault.Version
,vmagent
inBaseOperatorConf.VMAgentDefault.Version
,vmsingle
inBaseOperatorConf.VMSingleDefault.Version
,vmselect
inBaseOperatorConf.VMClusterDefault.VMSelectDefault.Version
,vmstorage
inBaseOperatorConf.VMClusterDefault.VMStorageDefault.Version
,vminsert
inBaseOperatorConf.VMClusterDefault.VMInsertDefault.Version
,vmbackupmanager
inBaseOperatorConf.VMBackup.Version
(should be enterprise version),vmauth
inBaseOperatorConf.VMAuthDefault.Version
.
- Run
make operator-conf
. - Rename "Next release" section in
docs/CHANGELOG.md
to the new release version and create new empty "Next release" section. - Commit and push changes to
master
. - Create and push a new tag with the new release version.
- Create github release from this tag with "Release notes" from
docs/CHANGELOG.md
for this version in description.
Helm Charts
The helm chart repository https://github.com/VictoriaMetrics/helm-charts/
Bump the version of images
Bump tag
field in values.yaml
with new release version.
Bump appVersion
field in Chart.yaml
with new release version.
Add new line to "Next release" section in CHANGELOG.md
about version update (the line must always start with "-
"). Do NOT change headers in CHANGELOG.md
.
Bump version
field in Chart.yaml
with incremental semver version (based on the CHANGELOG.md
analysis).
Do these updates to the following charts:
- Update
vmagent
chart version invalues.yaml
andChart.yaml
- Update
vmalert
chart version invalues.yaml
andChart.yaml
- Update
vmauth
chart version invalues.yaml
andChart.yaml
- Update
cluster
chart versions invalues.yaml
, bump version forvmselect
,vminsert
andvmstorage
andChart.yaml
- Update
k8s-stack
chart versions invalues.yaml
, bump version forvmselect
,vminsert
,vmstorage
,vmsingle
,vmalert
,vmagent
andChart.yaml
- Update
single-node
chart version invalues.yaml
andChart.yaml
- Update
vmgateway
chart version invalues.yaml
andChart.yaml
Once updated, run the following commands:
- Commit and push changes to
master
. - Run "Release" action on Github:
- Merge new PRs "Automatic update CHANGELOGs and READMEs" and "Synchronize docs" after pipelines are complete.
Ansible Roles
Bump the version of images
Repository https://github.com/VictoriaMetrics/ansible-playbooks
- Update
vmagent
version inmain.yml
- Update
vmalert
version inmain.yml
- Update
cluster
version inmain.yml
- Update
single
version inmain.yml
- Commit changes
- Create a new tag
- Create a new release. This automatically publishes the new versions to galaxy.ansible.com
RPM packages
Bump the version of components (for LTS releases only)
Repository https://github.com/VictoriaMetrics/victoriametrics-lts-rpm
- Update
vmagent
version invmagent.spec
- Update
vmalert
version invmalert.spec
- Update
vmauth
version invmauth.spec
- Update
vmbackup
version invmbackup.spec
- Update
vmctl
version invmctl.spec
- Update
vmrestore
version invmrestore.spec
- Update
vminsert
version invminsert.spec
- Update
vmselect
version invmselect.spec
- Update
vmstorage
version invmstorage.spec
- Update
vmsingle
version invmsingle.spec
- Commit and push changes to the repository. This will automatically build and publish new versions of RPM packages.