make release
target can be used to create a release. Environment variable RELEASE_VERSION
(default value latest
) can be used to define the release version. The release
target will:
- Update all tags of Docker images to
RELEASE_VERSION
- Update documentation version to
RELEASE_VERSION
- Set version of the main Maven projects (
topic-operator
andcluster-operator
) toRELEASE_VERSION
- Create TAR.GZ and ZIP archives with the Kubernetes and OpenShift YAML files which can be used for deployment and documentation in HTML format.
The release
target will not build the Docker images - they should be built and pushed automatically by Travis CI when the release is tagged in the GitHub repository. It also doesn't deploy the Java artifacts anywhere. They are only used to create the Docker images.
The release process should normally look like this:
- Create a release branch
- Run
make clean
- Export the desired version into the environment variable
RELEASE_VERSION
- Run
make release
- Commit the changes to the existing files (do not add the newly created top level TAR.GZ, ZIP archives or .yaml files into Git)
- Push the changes to the release branch on GitHub
- Create the tag and push it to GitHub. Tag name determines the tag of the resulting Docker images. Therefore the Git tag name has to be the same as the
RELEASE_VERSION
, i.e.git tag ${RELEASE_VERSION}
, - Once the CI build for the tag is finished and the Docker images are pushed to Docker Hub, Create a GitHub release and tag based on the release branch. Attach the TAR.GZ/ZIP archives, YAML files (for installation from URL) from step 4 and the Helm Chart to the release
- On the
master
git branch
- Update the versions to the next SNAPSHOT version using the
next_version
make
target. For example to update the next version to0.6.0-SNAPSHOT
run:make NEXT_VERSION=0.6.0-SNAPSHOT next_version
. - Copy the
helm-charts/index.yaml
from therelease
branch tomaster
.
- Update the website
- Add release documentation to
strimzi.github.io/docs/
. Update references to docs instrimzi.github.io/documentation/index.md
andstrimzi.github.io/documentation/archive/index.md
. Update also the link from the start page:strimzi.github.io/index.md
. - Update the Helm Chart repository file by copying
strimzi-kafka-operator/helm-charts/index.yaml
tostrimzi.github.io/charts/index.yaml
. - Update the Quickstarts for OKD and Minikube to use the latest stuff.
- Update the
_redirects
file to make sure the/install/latest
redirect points to the new release.
- The maven artifacts (
api
module) will be automatically staged from TravisCI during the tag build. It has to be releases from Sonatype to get to the main Maven repositories. - Update the Strimzi manifest files in Operate Hub community operators repository and submit a pull request upstream. Note: Instructions for this step need updating.
The version of Strimzi Kafka Bridge is defined in the file ./bridge.version
.
Even the master branch is using this fixed version and not the version build from the master
branch of Kafka Bridge.
If you need to update the Kafka bridge to newer version, you should do it with following steps:
- Edit the
bridge.version
file and update it to contain the new Bridge version - Run
make bridge_version
to update the related files to the new version - Commit all modified files to Git and open a PR.