Skip to content

Commit

Permalink
Release v0.4.0 (#562)
Browse files Browse the repository at this point in the history
Signed-off-by: Andreas Gerstmayr <agerstmayr@redhat.com>
  • Loading branch information
andreasgerstmayr authored Aug 16, 2023
1 parent 6364f84 commit 679bad5
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 59 deletions.
16 changes: 0 additions & 16 deletions .chloggen/disable_mtls.yaml

This file was deleted.

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

This file was deleted.

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

This file was deleted.

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

<!-- next version -->

## 0.4.0

### 💡 Enhancements 💡

- `operator`: Remove operator ServiceMonitor and PrometheusRule when operator deployment is removed (#536)

### 🧰 Bug fixes 🧰

- `operator`: Disable mTLS by default, to allow connections from Grafana to the query-frontend component (#552)
- `apis/tempo/v1alpha1`: provide correct mode name via operator-sdk annotation for oc console (#556)

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

## 0.3.0

### 🛑 Breaking changes 🛑
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Current Operator version
VERSION_DATE ?= $(shell date -u +'%Y-%m-%dT%H:%M:%SZ')
VERSION_PKG ?= github.com/grafana/tempo-operator/internal/version
OPERATOR_VERSION ?= 0.3.0
OPERATOR_VERSION ?= 0.4.0
TEMPO_VERSION ?= $(shell cat config/overlays/community/controller_manager_config.yaml | grep -oP "docker.io/grafana/tempo:\K.*")
TEMPO_QUERY_VERSION ?= $(shell cat config/overlays/community/controller_manager_config.yaml | grep -oP "docker.io/grafana/tempo-query:\K.*")
COMMIT_SHA = $(shell git rev-parse HEAD)
Expand Down Expand Up @@ -451,7 +451,7 @@ docs/operator/feature-gates.md: $(FEATURE_GATES_TARGET) gen-crd-api-reference-do
sed -i 's/+newline/\n/' $@

##@ Release
CHLOGGEN_VERSION=v0.3.0
CHLOGGEN_VERSION=v0.11.0
CHLOGGEN ?= $(LOCALBIN)/chloggen-$(CHLOGGEN_VERSION)
FILENAME?=$(shell git branch --show-current)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ metadata:
capabilities: Deep Insights
categories: Logging & Tracing
containerImage: ghcr.io/grafana/tempo-operator/tempo-operator
createdAt: "2023-08-16T14:00:23Z"
createdAt: "2023-08-16T16:11:15Z"
description: Create and manage deployments of Tempo, a high-scale distributed
tracing backend.
operators.operatorframework.io/builder: operator-sdk-v1.27.0
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.3.0
name: tempo-operator.v0.4.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -726,7 +726,7 @@ spec:
- args:
- start
- --config=controller_manager_config.yaml
image: ghcr.io/grafana/tempo-operator/tempo-operator:v0.3.0
image: ghcr.io/grafana/tempo-operator/tempo-operator:v0.4.0
livenessProbe:
httpGet:
path: /healthz
Expand Down Expand Up @@ -862,7 +862,7 @@ spec:
maturity: alpha
provider:
name: Grafana Tempo Operator SIG
version: 0.3.0
version: 0.4.0
webhookdefinitions:
- admissionReviewVersions:
- v1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,14 @@ metadata:
capabilities: Deep Insights
categories: Logging & Tracing
containerImage: ghcr.io/grafana/tempo-operator/tempo-operator
createdAt: "2023-08-16T14:00:21Z"
createdAt: "2023-08-16T16:11:14Z"
description: Create and manage deployments of Tempo, a high-scale distributed
tracing backend.
operators.operatorframework.io/builder: operator-sdk-v1.27.0
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.3.0
name: tempo-operator.v0.4.0
namespace: placeholder
spec:
apiservicedefinitions: {}
Expand Down Expand Up @@ -726,7 +726,7 @@ spec:
- args:
- start
- --config=controller_manager_config.yaml
image: ghcr.io/grafana/tempo-operator/tempo-operator:v0.3.0
image: ghcr.io/grafana/tempo-operator/tempo-operator:v0.4.0
livenessProbe:
httpGet:
path: /healthz
Expand Down Expand Up @@ -873,7 +873,7 @@ spec:
maturity: alpha
provider:
name: Grafana Tempo Operator SIG
version: 0.3.0
version: 0.4.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.3.0
newTag: v0.4.0

0 comments on commit 679bad5

Please sign in to comment.