Skip to content

Commit

Permalink
Prepare release 1.49.0 (jaegertracing#2320)
Browse files Browse the repository at this point in the history
Signed-off-by: Benedikt Bongartz <[email protected]>
  • Loading branch information
frzifus authored Sep 7, 2023
1 parent 0273379 commit 1f9e30c
Show file tree
Hide file tree
Showing 8 changed files with 16 additions and 13 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
Changes by Version
==================

## v1.49.1 (2023-09-07)
* fix: protect the kafka-profision setting behind a mutex ([#2308](https://github.com/jaegertracing/jaeger-operator/pull/2308), [@iblancasa](https://github.com/iblancasa))

## v1.48.1 (2023-09-04)
* Use base image that does not require subscription (centos 9 stream) ([#2313](https://github.com/jaegertracing/jaeger-operator/pull/2313), [@pavolloffay](https://github.com/pavolloffay))
* Update go dependencies to Kubernetes 0.28.1 ([#2301](https://github.com/jaegertracing/jaeger-operator/pull/2301), [@pavolloffay](https://github.com/pavolloffay))
Expand Down
10 changes: 5 additions & 5 deletions bundle/manifests/jaeger-operator.clusterserviceversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,15 @@ metadata:
categories: Logging & Tracing
certified: "false"
containerImage: quay.io/jaegertracing/jaeger-operator
createdAt: "2023-09-04T08:57:30Z"
createdAt: "2023-09-07T15:09:01Z"
description: Provides tracing, monitoring and troubleshooting for microservices-based
distributed systems
operators.openshift.io/infrastructure-features: '["disconnected"]'
operators.operatorframework.io/builder: operator-sdk-v1.27.0
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
repository: https://github.com/jaegertracing/jaeger-operator
support: Jaeger Community
name: jaeger-operator.v1.48.1
name: jaeger-operator.v1.49.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -403,7 +403,7 @@ spec:
fieldPath: metadata.namespace
- name: OPERATOR_NAME
value: jaeger-operator
image: quay.io/jaegertracing/jaeger-operator:1.48.1
image: quay.io/jaegertracing/jaeger-operator:1.49.0
livenessProbe:
httpGet:
path: /healthz
Expand Down Expand Up @@ -515,11 +515,11 @@ spec:
maturity: alpha
provider:
name: CNCF
replaces: jaeger-operator.v1.48.0
replaces: jaeger-operator.v1.48.1
selector:
matchLabels:
name: jaeger-operator
version: 1.48.1
version: 1.49.0
webhookdefinitions:
- admissionReviewVersions:
- v1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ spec:
maturity: alpha
provider:
name: CNCF
replaces: jaeger-operator.v1.48.0
replaces: jaeger-operator.v1.48.1
selector:
matchLabels:
name: jaeger-operator
Expand Down
2 changes: 1 addition & 1 deletion examples/all-in-one-with-options.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
spec:
strategy: allInOne
allInOne:
image: jaegertracing/all-in-one:1.48.0
image: jaegertracing/all-in-one:1.49.0
options:
log-level: debug
query:
Expand Down
4 changes: 2 additions & 2 deletions examples/operator-with-tracing.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ spec:
serviceAccountName: jaeger-operator
containers:
- name: jaeger-operator
image: jaegertracing/jaeger-operator:1.48.1
image: jaegertracing/jaeger-operator:1.49.0
ports:
- containerPort: 8383
name: http-metrics
Expand All @@ -41,7 +41,7 @@ spec:
- name: OPERATOR_NAME
value: "jaeger-operator"
- name: jaeger-agent
image: jaegertracing/jaeger-agent:1.48.0
image: jaegertracing/jaeger-agent:1.49.0
env:
- name: POD_NAMESPACE
valueFrom:
Expand Down
2 changes: 1 addition & 1 deletion examples/statefulset-manual-sidecar.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ spec:
- containerPort: 8080
protocol: TCP
- name: jaeger-agent
image: jaegertracing/jaeger-agent:1.48.0
image: jaegertracing/jaeger-agent:1.49.0
imagePullPolicy: IfNotPresent
ports:
- containerPort: 5775
Expand Down
2 changes: 1 addition & 1 deletion examples/tracegen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
spec:
containers:
- name: tracegen
image: jaegertracing/jaeger-tracegen:1.48.0
image: jaegertracing/jaeger-tracegen:1.49.0
args:
- -duration=30m
- -workers=10
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.48.0
jaeger=1.49.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.48.1
operator=1.49.0

0 comments on commit 1f9e30c

Please sign in to comment.