Skip to content

Latest commit

 

History

History
72 lines (49 loc) · 3.45 KB

RELEASE.md

File metadata and controls

72 lines (49 loc) · 3.45 KB

Releasing the Jaeger Operator for Kubernetes

Generating the changelog

  • Get the OAUTH_TOKEN from Github, select repo:status scope.
  • Run OAUTH_TOKEN=... make changelog
  • Remove the commits that are not relevant to users, like:
    • CI or testing-specific commits (e2e, unit test, ...)
    • bug fixes for problems that are not part of a release yet
    • version bumps for internal dependencies

Releasing

Steps to release a new version of the Jaeger Operator:

  1. Change the versions.txt so that it lists the target version of the Jaeger (if it is required). Don't touch the operator version: it will be changed automatically in the next step.

  2. Confirm that MIN_KUBERNETES_VERSION and MIN_OPENSHIFT_VERSION in the Makefile are still up-to-date, and update them if required.

  3. Run OPERATOR_VERSION=1.30.0 make prepare-release, using the operator version that will be released.

  4. Run the E2E tests in OpenShift as described in the CONTRIBUTING.md file. The tests will be executed automatically in Kubernetes by the GitHub Actions CI later.

  5. Prepare a changelog since last release.

  6. Update the release manager schedule.

  7. Commit the changes and create a pull request:

    git commit -sm "Preparing release v1.30.0"
  8. Once the changes above are merged and available in main tag it with the desired version, prefixed with v, eg. v1.30.0

    git checkout main
    git tag v1.30.0
    git push git@github.com:jaegertracing/jaeger-operator.git v1.30.0
  9. The GitHub Workflow will take it from here, creating a GitHub release and publishing the images

  10. After the release, PRs needs to be created against the Operator Hub Community Operators repositories:

This can be done with the following steps:

  • Update main git pull git@github.com:jaegertracing/jaeger-operator.git main
  • Clone both repositories upstream-community-operators and community-operators
  • Run make operatorhub
    • If you have gh installed and configured, it will open the necessary PRs for you automatically.
    • If you don't have it, the branches will be pushed to origin and you should be able to open the PR from there

Note

After the PRs have been made it must be ensured that:

  • Images listed in the ClusterServiceVersion (CSV) have a versions tag #1682
  • No bundle folder is included in the release
  • No foreign CRs like prometheus are in the manifests

Release managers

The operator should be released within a week after the Jaeger release.

Version Release Manager
1.58.0 Benedikt Bongartz
1.59.0 Pavol Loffay
1.60.0 Israel Blancas
1.61.0 Ruben Vargas