-
Notifications
You must be signed in to change notification settings - Fork 345
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Ruben Vargas <[email protected]>
- Loading branch information
1 parent
40b3388
commit 66e7911
Showing
7 changed files
with
535 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,22 +5,22 @@ 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. | ||
|
||
1. Run `make prepare-release OPERATOR_VERSION=1.27.0`, using the operator version that will be released. | ||
1. Run `make prepare-release OPERATOR_VERSION=1.28.0`, using the operator version that will be released. | ||
|
||
1. Prepare a changelog since last release. | ||
|
||
1. Commit the changes and create a pull request: | ||
|
||
``` | ||
git commit -sm "Preparing release v1.27.0" | ||
git commit -sm "Preparing release v1.28.0" | ||
``` | ||
|
||
1. Once the changes above are merged and available in `master` tag it with the desired version, prefixed with `v`, eg. `v1.27.0` | ||
1. Once the changes above are merged and available in `master` tag it with the desired version, prefixed with `v`, eg. `v1.28.0` | ||
|
||
``` | ||
git checkout master | ||
git tag v1.27.0 | ||
git push [email protected]:jaegertracing/jaeger-operator.git v1.27.0 | ||
git tag v1.28.0 | ||
git push [email protected]:jaegertracing/jaeger-operator.git v1.28.0 | ||
``` | ||
|
||
1. The GitHub Workflow will take it from here, creating a GitHub release and publishing the images | ||
|
515 changes: 515 additions & 0 deletions
515
deploy/olm-catalog/jaeger-operator/1.28.0/jaeger-operator.v1.28.0.clusterserviceversion.yaml
Large diffs are not rendered by default.
Oops, something went wrong.
2 changes: 1 addition & 1 deletion
2
deploy/olm-catalog/jaeger-operator/jaeger-operator.package.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
channels: | ||
- currentCSV: jaeger-operator.v1.27.0 | ||
- currentCSV: jaeger-operator.v1.28.0 | ||
name: stable | ||
defaultChannel: stable | ||
packageName: jaeger |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# The Jaeger version to use by default. This is updated manually. Make sure to update the changelog | ||
# and add an upgrade procedure (pkg/upgrade) for the new version. | ||
jaeger=1.27.0 | ||
jaeger=1.28.0 | ||
|
||
# DO NOT EDIT the next value, it is updated automatically during the release. | ||
# Represents the current (latest) release of the Jaeger Operator. | ||
operator=1.27.0 | ||
operator=1.28.0 |