From a86b6ad4d51a8e635bada02c4550b72b34c78dfc Mon Sep 17 00:00:00 2001 From: Erwin Tung Date: Tue, 29 Jul 2025 21:39:23 -0700 Subject: [PATCH 1/7] Add Namespace to Querier HPA Signed-off-by: Erwin Tung --- charts/tempo-distributed/templates/querier/hpa.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/charts/tempo-distributed/templates/querier/hpa.yaml b/charts/tempo-distributed/templates/querier/hpa.yaml index 1d497d6874..b27ecfa61f 100644 --- a/charts/tempo-distributed/templates/querier/hpa.yaml +++ b/charts/tempo-distributed/templates/querier/hpa.yaml @@ -4,6 +4,7 @@ apiVersion: {{ $apiVersion }} kind: HorizontalPodAutoscaler metadata: name: {{ include "tempo.resourceName" (dict "ctx" . "component" "querier") }} + namespace: {{ .Release.Namespace }} labels: {{- include "tempo.labels" (dict "ctx" . "component" "querier") | nindent 4 }} spec: From 07aae2c6015215022d03d0927bd379a49facec69 Mon Sep 17 00:00:00 2001 From: Erwin Tung Date: Tue, 29 Jul 2025 23:07:30 -0700 Subject: [PATCH 2/7] Add Namespace to Query Frontend HPA Signed-off-by: Erwin Tung --- charts/tempo-distributed/templates/query-frontend/hpa.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/charts/tempo-distributed/templates/query-frontend/hpa.yaml b/charts/tempo-distributed/templates/query-frontend/hpa.yaml index abaa744eff..c9a2399295 100644 --- a/charts/tempo-distributed/templates/query-frontend/hpa.yaml +++ b/charts/tempo-distributed/templates/query-frontend/hpa.yaml @@ -4,6 +4,7 @@ apiVersion: {{ $apiVersion }} kind: HorizontalPodAutoscaler metadata: name: {{ include "tempo.resourceName" (dict "ctx" . "component" "query-frontend") }} + namespace: {{ .Release.Namespace }} labels: {{- include "tempo.labels" (dict "ctx" . "component" "query-frontend") | nindent 4 }} spec: From 1103c4fce8b16fc903086f310bd87dd0978f2285 Mon Sep 17 00:00:00 2001 From: Erwin Tung Date: Tue, 29 Jul 2025 23:08:07 -0700 Subject: [PATCH 3/7] Add Namespace to Distributor HPA Signed-off-by: Erwin Tung --- charts/tempo-distributed/templates/distributor/hpa.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/charts/tempo-distributed/templates/distributor/hpa.yaml b/charts/tempo-distributed/templates/distributor/hpa.yaml index 8f3ad36f05..957d48aee0 100644 --- a/charts/tempo-distributed/templates/distributor/hpa.yaml +++ b/charts/tempo-distributed/templates/distributor/hpa.yaml @@ -4,6 +4,7 @@ apiVersion: {{ $apiVersion }} kind: HorizontalPodAutoscaler metadata: name: {{ include "tempo.resourceName" (dict "ctx" . "component" "distributor") }} + namespace: {{ .Release.Namespace }} labels: {{- include "tempo.labels" (dict "ctx" . "component" "distributor") | nindent 4 }} spec: From 4d00312f565f03b51cc0eaaef2d6a9aae2d0cb32 Mon Sep 17 00:00:00 2001 From: Erwin Tung Date: Tue, 29 Jul 2025 23:59:23 -0700 Subject: [PATCH 4/7] Add Namespace to Ingester HPA Signed-off-by: Erwin Tung --- charts/tempo-distributed/templates/ingester/hpa.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/charts/tempo-distributed/templates/ingester/hpa.yaml b/charts/tempo-distributed/templates/ingester/hpa.yaml index 66a3b230f8..eb3b2d85aa 100644 --- a/charts/tempo-distributed/templates/ingester/hpa.yaml +++ b/charts/tempo-distributed/templates/ingester/hpa.yaml @@ -4,6 +4,7 @@ apiVersion: {{ $apiVersion }} kind: HorizontalPodAutoscaler metadata: name: {{ include "tempo.resourceName" (dict "ctx" . "component" "ingester") }} + namespace: {{ .Release.Namespace }} labels: {{- include "tempo.labels" (dict "ctx" . "component" "ingester") | nindent 4 }} spec: From d9b4991ab45acf6db4d99ccd05fdbb6cc424843a Mon Sep 17 00:00:00 2001 From: Erwin Tung Date: Wed, 30 Jul 2025 00:00:15 -0700 Subject: [PATCH 5/7] Add Namespace to Enterprise Federation Frontend HPA Signed-off-by: Erwin Tung --- .../templates/enterprise-federation-frontend/hpa.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/charts/tempo-distributed/templates/enterprise-federation-frontend/hpa.yaml b/charts/tempo-distributed/templates/enterprise-federation-frontend/hpa.yaml index 8a84c9d112..da52841470 100644 --- a/charts/tempo-distributed/templates/enterprise-federation-frontend/hpa.yaml +++ b/charts/tempo-distributed/templates/enterprise-federation-frontend/hpa.yaml @@ -4,6 +4,7 @@ apiVersion: {{ $apiVersion }} kind: HorizontalPodAutoscaler metadata: name: {{ include "tempo.resourceName" (dict "ctx" . "component" "enterprise-federation-frontend") }} + namespace: {{ .Release.Namespace }} labels: {{- include "tempo.labels" (dict "ctx" . "component" "enterprise-federation-frontend") | nindent 4 }} spec: From b9874029d907513bd61ddbc7e66779de1b5bc619 Mon Sep 17 00:00:00 2001 From: Erwin Tung Date: Wed, 30 Jul 2025 16:42:31 -0700 Subject: [PATCH 6/7] Update Helm Chart Version Signed-off-by: Erwin Tung --- charts/tempo-distributed/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/tempo-distributed/Chart.yaml b/charts/tempo-distributed/Chart.yaml index f33956804d..b7877a6275 100644 --- a/charts/tempo-distributed/Chart.yaml +++ b/charts/tempo-distributed/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: tempo-distributed description: Grafana Tempo in MicroService mode type: application -version: 1.46.1 +version: 1.46.2 appVersion: 2.8.1 engine: gotpl home: https://grafana.com/docs/tempo/latest/ From ca93300083b3d49df7f64626bc23023523225877 Mon Sep 17 00:00:00 2001 From: Erwin Tung Date: Thu, 31 Jul 2025 10:45:14 -0700 Subject: [PATCH 7/7] Update Helm Chart Version in README Signed-off-by: Erwin Tung --- charts/tempo-distributed/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/tempo-distributed/README.md b/charts/tempo-distributed/README.md index bb26b760dc..8c4a413cce 100644 --- a/charts/tempo-distributed/README.md +++ b/charts/tempo-distributed/README.md @@ -1,6 +1,6 @@ # tempo-distributed -![Version: 1.46.1](https://img.shields.io/badge/Version-1.46.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.8.1](https://img.shields.io/badge/AppVersion-2.8.1-informational?style=flat-square) +![Version: 1.46.2](https://img.shields.io/badge/Version-1.46.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.8.1](https://img.shields.io/badge/AppVersion-2.8.1-informational?style=flat-square) Grafana Tempo in MicroService mode @@ -1160,4 +1160,4 @@ traces: receiverConfig: {} # -- Default OTLP gRPC port port: 4317 -``` \ No newline at end of file +```