Skip to content

Commit

Permalink
Prepare release v0.8.0 (#779)
Browse files Browse the repository at this point in the history
* Prepare Release 0.8.0

* add newline

Signed-off-by: Andreas Gerstmayr <[email protected]>

---------

Signed-off-by: Andreas Gerstmayr <[email protected]>
Co-authored-by: andreasgerstmayr <[email protected]>
Co-authored-by: Andreas Gerstmayr <[email protected]>
  • Loading branch information
3 people authored Feb 2, 2024
1 parent b334efd commit 724740d
Show file tree
Hide file tree
Showing 11 changed files with 33 additions and 80 deletions.
16 changes: 0 additions & 16 deletions .chloggen/allow_gateway_without_jaeger_ui.yaml

This file was deleted.

16 changes: 0 additions & 16 deletions .chloggen/fix-cluster-monitoring-role.yaml

This file was deleted.

16 changes: 0 additions & 16 deletions .chloggen/fix_oidc_nil.yaml

This file was deleted.

18 changes: 0 additions & 18 deletions .chloggen/monolithic_mode.yaml

This file was deleted.

19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,25 @@ Changes by Version

<!-- next version -->

## 0.8.0

### 💡 Enhancements 💡

- `operator`: Make Tempo-Query forwarding on gateway optional (#628)
- `operator`: Support monolithic deployment mode (#710)

The operator exposes a new CRD `TempoMonolithic`, which manages a Tempo instance in monolithic mode.
The monolithic mode supports the following additional storage backends: in-memory and file system (persistent volume).


### 🧰 Bug fixes 🧰

- `operator`: Fix the cluster-monitoring-view RBAC when operator is deployed in arbitrary namespace (#741)
- `operator`: NIL pointer dereference when OIDC not specified for tenants in static mode (#647)

### Components
- Tempo: [v2.3.1](https://github.com/grafana/tempo/releases/tag/v2.3.1)

## 0.7.0

### 💡 Enhancements 💡
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Current Operator version
OPERATOR_VERSION ?= 0.7.0
OPERATOR_VERSION ?= 0.8.0
TEMPO_VERSION ?= 2.3.1
TEMPO_QUERY_VERSION ?= 2.3.1
TEMPO_GATEWAY_VERSION ?= main-2024-01-16-162bfad
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ metadata:
]
capabilities: Deep Insights
categories: Logging & Tracing,Monitoring
containerImage: ghcr.io/grafana/tempo-operator/tempo-operator:v0.7.0
createdAt: "2024-02-02T17:03:05Z"
containerImage: ghcr.io/grafana/tempo-operator/tempo-operator:v0.8.0
createdAt: "2024-02-02T17:31:35Z"
description: Create and manage deployments of Tempo, a high-scale distributed
tracing backend.
operatorframework.io/cluster-monitoring: "true"
Expand All @@ -83,7 +83,7 @@ metadata:
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
repository: https://github.com/grafana/tempo-operator
support: Grafana Tempo Operator SIG
name: tempo-operator.v0.7.0
name: tempo-operator.v0.8.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -1132,7 +1132,7 @@ spec:
value: quay.io/observatorium/api:main-2024-01-16-162bfad
- name: RELATED_IMAGE_TEMPO_GATEWAY_OPA
value: quay.io/observatorium/opa-openshift:main-2023-11-15-8ed318e
image: ghcr.io/grafana/tempo-operator/tempo-operator:v0.7.0
image: ghcr.io/grafana/tempo-operator/tempo-operator:v0.8.0
livenessProbe:
httpGet:
path: /healthz
Expand Down Expand Up @@ -1277,7 +1277,7 @@ spec:
name: tempo-gateway
- image: quay.io/observatorium/opa-openshift:main-2023-11-15-8ed318e
name: tempo-gateway-opa
version: 0.7.0
version: 0.8.0
webhookdefinitions:
- admissionReviewVersions:
- v1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ metadata:
]
capabilities: Deep Insights
categories: Logging & Tracing,Monitoring
containerImage: ghcr.io/grafana/tempo-operator/tempo-operator:v0.7.0
createdAt: "2024-02-02T17:03:04Z"
containerImage: ghcr.io/grafana/tempo-operator/tempo-operator:v0.8.0
createdAt: "2024-02-02T17:31:33Z"
description: Create and manage deployments of Tempo, a high-scale distributed
tracing backend.
operatorframework.io/cluster-monitoring: "true"
Expand All @@ -83,7 +83,7 @@ metadata:
operators.operatorframework.io/project_layout: go.kubebuilder.io/v3
repository: https://github.com/grafana/tempo-operator
support: Grafana Tempo Operator SIG
name: tempo-operator.v0.7.0
name: tempo-operator.v0.8.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -1142,7 +1142,7 @@ spec:
value: quay.io/observatorium/api:main-2024-01-16-162bfad
- name: RELATED_IMAGE_TEMPO_GATEWAY_OPA
value: quay.io/observatorium/opa-openshift:main-2023-11-15-8ed318e
image: ghcr.io/grafana/tempo-operator/tempo-operator:v0.7.0
image: ghcr.io/grafana/tempo-operator/tempo-operator:v0.8.0
livenessProbe:
httpGet:
path: /healthz
Expand Down Expand Up @@ -1298,7 +1298,7 @@ spec:
name: tempo-gateway
- image: quay.io/observatorium/opa-openshift:main-2023-11-15-8ed318e
name: tempo-gateway-opa
version: 0.7.0
version: 0.8.0
webhookdefinitions:
- admissionReviewVersions:
- v1
Expand Down
2 changes: 1 addition & 1 deletion config/manager/kustomization.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ kind: Kustomization
images:
- name: controller
newName: ghcr.io/grafana/tempo-operator/tempo-operator
newTag: v0.7.0
newTag: v0.8.0
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
alm-examples: '[]'
capabilities: Deep Insights
categories: Logging & Tracing,Monitoring
containerImage: ghcr.io/grafana/tempo-operator/tempo-operator:v0.7.0
containerImage: ghcr.io/grafana/tempo-operator/tempo-operator:v0.8.0
description: Create and manage deployments of Tempo, a high-scale distributed
tracing backend.
operatorframework.io/cluster-monitoring: "true"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
alm-examples: '[]'
capabilities: Deep Insights
categories: Logging & Tracing,Monitoring
containerImage: ghcr.io/grafana/tempo-operator/tempo-operator:v0.7.0
containerImage: ghcr.io/grafana/tempo-operator/tempo-operator:v0.8.0
description: Create and manage deployments of Tempo, a high-scale distributed
tracing backend.
operatorframework.io/cluster-monitoring: "true"
Expand Down

0 comments on commit 724740d

Please sign in to comment.