Skip to content

Commit

Permalink
Preparing release v1.28.0 (#1616)
Browse files Browse the repository at this point in the history
Signed-off-by: Ruben Vargas <[email protected]>
  • Loading branch information
rubenvp8510 authored Nov 8, 2021
1 parent 40b3388 commit 66e7911
Show file tree
Hide file tree
Showing 7 changed files with 535 additions and 13 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Changes by Version
==================

1.28.0 (2021-11-08)
-------------------
* Use CRDs to detect features in the cluster ([#1608](https://github.com/jaegertracing/jaeger-operator/pull/1608), [@pavolloffay](https://github.com/pavolloffay))
* Make ServiceMonitor creation optional ([#1323](https://github.com/jaegertracing/jaeger-operator/pull/1323), [@igorwwwwwwwwwwwwwwwwwwww](https://github.com/igorwwwwwwwwwwwwwwwwwwww))
* Change default OpenShift query ingress SAR to pods in the jaeger namespace ([#1583](https://github.com/jaegertracing/jaeger-operator/pull/1583), [@pavolloffay](https://github.com/pavolloffay))
* Fix gRPC flags for OpenShift when 'reporter.grpc.host-port' is defined ([#1584](https://github.com/jaegertracing/jaeger-operator/pull/1584), [@Git-Jiro](https://github.com/Git-Jiro))

1.27.0 (2021-10-07)
-------------------
* Allow sidecar injection for query pod from other Jaeger instances ([#1569](https://github.com/jaegertracing/jaeger-operator/pull/1569), [@pavolloffay](https://github.com/pavolloffay))
Expand Down
10 changes: 5 additions & 5 deletions RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

Large diffs are not rendered by default.

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
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ metadata:
operators.openshift.io/infrastructure-features: '["disconnected"]'
repository: https://github.com/jaegertracing/jaeger-operator
support: Jaeger Community
name: jaeger-operator.v1.27.0
name: jaeger-operator.v1.28.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -301,7 +301,7 @@ spec:
fieldPath: metadata.namespace
- name: OPERATOR_NAME
value: jaeger-operator
image: jaegertracing/jaeger-operator:1.27.0
image: jaegertracing/jaeger-operator:1.28.0
imagePullPolicy: Always
name: jaeger-operator
ports:
Expand Down Expand Up @@ -508,8 +508,8 @@ spec:
maturity: alpha
provider:
name: CNCF
replaces: jaeger-operator.v1.26.0
replaces: jaeger-operator.v1.27.0
selector:
matchLabels:
name: jaeger-operator
version: 1.27.0
version: 1.28.0
2 changes: 1 addition & 1 deletion deploy/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ spec:
serviceAccountName: jaeger-operator
containers:
- name: jaeger-operator
image: jaegertracing/jaeger-operator:1.27.0
image: jaegertracing/jaeger-operator:1.28.0
ports:
- containerPort: 8383
name: http-metrics
Expand Down
4 changes: 2 additions & 2 deletions versions.txt
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

0 comments on commit 66e7911

Please sign in to comment.