Skip to content

Commit a4395ab

Browse files
Prepare Release 0.19.0 (#1310)
Co-authored-by: rubenvp8510 <[email protected]>
1 parent a8f2180 commit a4395ab

File tree

10 files changed

+31
-62
lines changed

10 files changed

+31
-62
lines changed

.chloggen/fix_monolithic_metrics.yaml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.chloggen/tls-restart-pods.yaml

Lines changed: 0 additions & 16 deletions
This file was deleted.

.chloggen/update_tempo_29.yaml

Lines changed: 0 additions & 16 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,23 @@ Changes by Version
33

44
<!-- next version -->
55

6+
## 0.19.0
7+
8+
### 💡 Enhancements 💡
9+
10+
- `tempostack, tempomonolithic`: Update Tempo to 2.9.0 (#1308)
11+
12+
### 🧰 Bug fixes 🧰
13+
14+
- `tempomonolithic`: Scrape tempo metrics for monolithic. (#1275)
15+
- `tempostack`: Restart pods when certificates are re-generated. (#1301)
16+
17+
### Components
18+
- Tempo: [v2.9.0](https://github.com/grafana/tempo/releases/tag/v2.9.0)
19+
20+
### Support
21+
This release supports Kubernetes 1.25 to 1.32.
22+
623
## 0.18.0
724

825
### 💡 Enhancements 💡

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Current Operator version
2-
OPERATOR_VERSION ?= 0.18.0
2+
OPERATOR_VERSION ?= 0.19.0
33
TEMPO_VERSION ?= 2.9.0
44
JAEGER_QUERY_VERSION ?= 1.68.0
55
TEMPO_QUERY_VERSION ?= $(TEMPO_VERSION)

bundle/community/manifests/tempo-operator.clusterserviceversion.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ metadata:
7373
]
7474
capabilities: Deep Insights
7575
categories: Logging & Tracing,Monitoring
76-
containerImage: ghcr.io/grafana/tempo-operator/tempo-operator:v0.18.0
77-
createdAt: "2025-11-19T23:04:49Z"
76+
containerImage: ghcr.io/grafana/tempo-operator/tempo-operator:v0.19.0
77+
createdAt: "2025-11-20T16:37:27Z"
7878
description: Create and manage deployments of Tempo, a high-scale distributed
7979
tracing backend.
8080
operatorframework.io/cluster-monitoring: "true"
@@ -83,7 +83,7 @@ metadata:
8383
operators.operatorframework.io/project_layout: go.kubebuilder.io/v4
8484
repository: https://github.com/grafana/tempo-operator
8585
support: Grafana Tempo Operator SIG
86-
name: tempo-operator.v0.18.0
86+
name: tempo-operator.v0.19.0
8787
namespace: placeholder
8888
spec:
8989
apiservicedefinitions: {}
@@ -1567,7 +1567,7 @@ spec:
15671567
value: quay.io/observatorium/opa-openshift:main-2025-06-16-ecdeca0
15681568
- name: RELATED_IMAGE_OAUTH_PROXY
15691569
value: quay.io/openshift/origin-oauth-proxy:4.14
1570-
image: ghcr.io/grafana/tempo-operator/tempo-operator:v0.18.0
1570+
image: ghcr.io/grafana/tempo-operator/tempo-operator:v0.19.0
15711571
livenessProbe:
15721572
httpGet:
15731573
path: /healthz
@@ -1697,7 +1697,7 @@ spec:
16971697
name: tempo-gateway-opa
16981698
- image: quay.io/openshift/origin-oauth-proxy:4.14
16991699
name: oauth-proxy
1700-
version: 0.18.0
1700+
version: 0.19.0
17011701
webhookdefinitions:
17021702
- admissionReviewVersions:
17031703
- v1

bundle/openshift/manifests/tempo-operator.clusterserviceversion.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ metadata:
7373
]
7474
capabilities: Deep Insights
7575
categories: Logging & Tracing,Monitoring
76-
containerImage: ghcr.io/grafana/tempo-operator/tempo-operator:v0.18.0
77-
createdAt: "2025-11-19T23:04:48Z"
76+
containerImage: ghcr.io/grafana/tempo-operator/tempo-operator:v0.19.0
77+
createdAt: "2025-11-20T16:37:25Z"
7878
description: Create and manage deployments of Tempo, a high-scale distributed
7979
tracing backend.
8080
operatorframework.io/cluster-monitoring: "true"
@@ -83,7 +83,7 @@ metadata:
8383
operators.operatorframework.io/project_layout: go.kubebuilder.io/v4
8484
repository: https://github.com/grafana/tempo-operator
8585
support: Grafana Tempo Operator SIG
86-
name: tempo-operator.v0.18.0
86+
name: tempo-operator.v0.19.0
8787
namespace: placeholder
8888
spec:
8989
apiservicedefinitions: {}
@@ -1578,7 +1578,7 @@ spec:
15781578
value: quay.io/observatorium/opa-openshift:main-2025-06-16-ecdeca0
15791579
- name: RELATED_IMAGE_OAUTH_PROXY
15801580
value: quay.io/openshift/origin-oauth-proxy:4.14
1581-
image: ghcr.io/grafana/tempo-operator/tempo-operator:v0.18.0
1581+
image: ghcr.io/grafana/tempo-operator/tempo-operator:v0.19.0
15821582
livenessProbe:
15831583
httpGet:
15841584
path: /healthz
@@ -1714,7 +1714,7 @@ spec:
17141714
name: tempo-gateway-opa
17151715
- image: quay.io/openshift/origin-oauth-proxy:4.14
17161716
name: oauth-proxy
1717-
version: 0.18.0
1717+
version: 0.19.0
17181718
webhookdefinitions:
17191719
- admissionReviewVersions:
17201720
- v1

config/manager/kustomization.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@ kind: Kustomization
99
images:
1010
- name: controller
1111
newName: ghcr.io/grafana/tempo-operator/tempo-operator
12-
newTag: v0.18.0
12+
newTag: v0.19.0

config/manifests/community/bases/tempo-operator.clusterserviceversion.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
alm-examples: '[]'
66
capabilities: Deep Insights
77
categories: Logging & Tracing,Monitoring
8-
containerImage: ghcr.io/grafana/tempo-operator/tempo-operator:v0.18.0
8+
containerImage: ghcr.io/grafana/tempo-operator/tempo-operator:v0.19.0
99
description: Create and manage deployments of Tempo, a high-scale distributed
1010
tracing backend.
1111
operatorframework.io/cluster-monitoring: "true"

config/manifests/openshift/bases/tempo-operator.clusterserviceversion.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
alm-examples: '[]'
66
capabilities: Deep Insights
77
categories: Logging & Tracing,Monitoring
8-
containerImage: ghcr.io/grafana/tempo-operator/tempo-operator:v0.18.0
8+
containerImage: ghcr.io/grafana/tempo-operator/tempo-operator:v0.19.0
99
description: Create and manage deployments of Tempo, a high-scale distributed
1010
tracing backend.
1111
operatorframework.io/cluster-monitoring: "true"

0 commit comments

Comments
 (0)