From d7d5cbbd18ac801f2a7098e1f6efeddeafb83c43 Mon Sep 17 00:00:00 2001 From: AvivGuiser Date: Sat, 19 Jul 2025 01:27:16 +0300 Subject: [PATCH 1/5] [tempo-distributed]: align usage of globa.extraArgs and globa.extraEnvFrom across. Signed-off-by: AvivGuiser --- charts/tempo-distributed/README.md | 4 +++- .../templates/admin-api/admin-api-dep.yaml | 3 +++ .../templates/compactor/deployment-compactor.yaml | 12 ++++++++++-- .../distributor/deployment-distributor.yaml | 14 +++++++++++--- .../deployment-federation-frontend.yaml | 14 +++++++++++--- .../templates/enterprise-gateway/gateway-dep.yaml | 3 +++ .../templates/gateway/deployment-gateway.yaml | 9 +++++++-- .../templates/ingester/statefulset-ingester.yaml | 12 ++++++++++-- .../templates/memcached/statefulset-memcached.yaml | 9 +++++++-- .../statefulset-metrics-generator.yaml | 12 ++++++++++-- .../templates/querier/deployment-querier.yaml | 12 ++++++++++-- .../query-frontend/deployment-query-frontend.yaml | 12 ++++++++++-- .../templates/tokengen/tokengen-job.yaml | 5 ++++- charts/tempo-distributed/values.yaml | 6 ++++++ 14 files changed, 105 insertions(+), 22 deletions(-) diff --git a/charts/tempo-distributed/README.md b/charts/tempo-distributed/README.md index 0b2579e19c..a20d8e9e27 100644 --- a/charts/tempo-distributed/README.md +++ b/charts/tempo-distributed/README.md @@ -555,7 +555,9 @@ The memcached default args are removed and should be provided manually. The sett | global.clusterDomain | string | `"cluster.local"` | configures cluster domain ("cluster.local" by default) | | global.dnsNamespace | string | `"kube-system"` | configures DNS service namespace | | global.dnsService | string | `"kube-dns"` | configures DNS service name | +| global.extraArgs | list | `[]` | Common args to add to all pods directly managed by this chart. scope: admin-api, compactor, distributor, enterprise-federation-frontend, gateway, ingester, memcached, metrics-generator, querier, query-frontend, tokengen | | global.extraEnv | list | `[]` | Common environment variables to add to all pods directly managed by this chart. scope: admin-api, compactor, distributor, enterprise-federation-frontend, gateway, ingester, memcached, metrics-generator, querier, query-frontend, tokengen | +| global.extraEnvFrom | list | `[]` | Common environment variables which come from a ConfigMap or Secret to add to all pods directly managed by this chart. scope: admin-api, compactor, distributor, enterprise-federation-frontend, gateway, ingester, memcached, metrics-generator, querier, query-frontend, tokengen | | global.image.pullSecrets | list | `[]` | Optional list of imagePullSecrets for all images, excluding enterprise. Names of existing secrets with private container registry credentials. Ref: https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod Example: pullSecrets: [ my-dockerconfigjson-secret ] | | global.image.registry | string | `"docker.io"` | Overrides the Docker registry globally for all images, excluding enterprise. | | global.priorityClassName | string | `nil` | Overrides the priorityClassName for all pods | @@ -1160,4 +1162,4 @@ traces: receiverConfig: {} # -- Default OTLP gRPC port port: 4317 -``` \ No newline at end of file +``` diff --git a/charts/tempo-distributed/templates/admin-api/admin-api-dep.yaml b/charts/tempo-distributed/templates/admin-api/admin-api-dep.yaml index 04525b4f9f..ea9780da8b 100644 --- a/charts/tempo-distributed/templates/admin-api/admin-api-dep.yaml +++ b/charts/tempo-distributed/templates/admin-api/admin-api-dep.yaml @@ -53,6 +53,9 @@ spec: {{- range $key, $value := .Values.adminApi.extraArgs }} - "-{{ $key }}={{ $value }}" {{- end }} + {{- range $key, $value := .Values.global.extraArgs }} + - "-{{ $key }}={{ $value }}" + {{- end }} volumeMounts: - mountPath: /conf name: config diff --git a/charts/tempo-distributed/templates/compactor/deployment-compactor.yaml b/charts/tempo-distributed/templates/compactor/deployment-compactor.yaml index 59a2b869db..f49def948f 100644 --- a/charts/tempo-distributed/templates/compactor/deployment-compactor.yaml +++ b/charts/tempo-distributed/templates/compactor/deployment-compactor.yaml @@ -66,6 +66,9 @@ spec: {{- with .Values.compactor.extraArgs }} {{- toYaml . | nindent 12 }} {{- end }} + {{- with .Values.global.extraArgs }} + {{- toYaml . | nindent 12 }} + {{- end }} image: {{ include "tempo.imageReference" $dict }} imagePullPolicy: {{ .Values.tempo.image.pullPolicy }} name: compactor @@ -83,9 +86,14 @@ spec: {{ toYaml . | nindent 12 }} {{- end }} {{- end }} - {{- with .Values.compactor.extraEnvFrom }} + {{- if or .Values.global.extraEnvFrom .Values.compactor.extraEnvFrom }} envFrom: - {{- toYaml . | nindent 12 }} + {{- with .Values.compactor.extraEnvFrom }} + {{- toYaml . | nindent 12 }} + {{- end }} + {{- with .Values.global.extraEnvFrom }} + {{- toYaml . | nindent 12 }} + {{- end }} {{- end }} resources: {{- toYaml .Values.compactor.resources | nindent 12 }} diff --git a/charts/tempo-distributed/templates/distributor/deployment-distributor.yaml b/charts/tempo-distributed/templates/distributor/deployment-distributor.yaml index 4f2cb9a184..dc266c2870 100644 --- a/charts/tempo-distributed/templates/distributor/deployment-distributor.yaml +++ b/charts/tempo-distributed/templates/distributor/deployment-distributor.yaml @@ -22,7 +22,7 @@ spec: {{- with .Values.distributor.strategy }} strategy: {{- toYaml . | nindent 4 }} -{{- end }} +{{- end }} template: metadata: labels: @@ -68,6 +68,9 @@ spec: {{- with .Values.distributor.extraArgs }} {{- toYaml . | nindent 12 }} {{- end }} + {{- with .Values.global.extraArgs }} + {{- toYaml . | nindent 12 }} + {{- end }} image: {{ include "tempo.imageReference" $dict }} imagePullPolicy: {{ .Values.tempo.image.pullPolicy }} name: distributor @@ -126,9 +129,14 @@ spec: {{- toYaml . | nindent 12 }} {{- end }} {{- end }} - {{- with .Values.distributor.extraEnvFrom }} + {{- if or .Values.global.extraEnvFrom .Values.distributor.extraEnvFrom }} envFrom: - {{- toYaml . | nindent 12 }} + {{- with .Values.distributor.extraEnvFrom }} + {{- toYaml . | nindent 12 }} + {{- end }} + {{- with .Values.global.extraEnvFrom }} + {{- toYaml . | nindent 12 }} + {{- end }} {{- end }} readinessProbe: {{- toYaml .Values.tempo.readinessProbe | nindent 12 }} diff --git a/charts/tempo-distributed/templates/enterprise-federation-frontend/deployment-federation-frontend.yaml b/charts/tempo-distributed/templates/enterprise-federation-frontend/deployment-federation-frontend.yaml index 030b43b63b..64a52725d3 100644 --- a/charts/tempo-distributed/templates/enterprise-federation-frontend/deployment-federation-frontend.yaml +++ b/charts/tempo-distributed/templates/enterprise-federation-frontend/deployment-federation-frontend.yaml @@ -65,6 +65,9 @@ spec: {{- with .Values.enterpriseFederationFrontend.extraArgs }} {{- toYaml . | nindent 12 }} {{- end }} + {{- with .Values.global.extraArgs }} + {{- toYaml . | nindent 12 }} + {{- end }} image: {{ include "tempo.imageReference" $dict }} imagePullPolicy: {{ .Values.tempo.image.pullPolicy }} name: federation-frontend @@ -80,9 +83,14 @@ spec: {{- toYaml . | nindent 12 }} {{- end }} {{- end }} - {{- with .Values.enterpriseFederationFrontend.extraEnvFrom }} + {{- if or .Values.global.extraEnvFrom .Values.enterpriseFederationFrontend.extraEnvFrom }} envFrom: - {{- toYaml . | nindent 12 }} + {{- with .Values.enterpriseFederationFrontend.extraEnvFrom }} + {{- toYaml . | nindent 12 }} + {{- end }} + {{- with .Values.global.extraEnvFrom }} + {{- toYaml . | nindent 12 }} + {{- end }} {{- end }} resources: {{- toYaml .Values.enterpriseFederationFrontend.resources | nindent 12 }} @@ -134,4 +142,4 @@ spec: {{- with .Values.enterpriseFederationFrontend.extraVolumes }} {{- toYaml . | nindent 8 }} {{- end }} -{{- end }} \ No newline at end of file +{{- end }} diff --git a/charts/tempo-distributed/templates/enterprise-gateway/gateway-dep.yaml b/charts/tempo-distributed/templates/enterprise-gateway/gateway-dep.yaml index 0da57a1548..6a2a5f3a9f 100644 --- a/charts/tempo-distributed/templates/enterprise-gateway/gateway-dep.yaml +++ b/charts/tempo-distributed/templates/enterprise-gateway/gateway-dep.yaml @@ -51,6 +51,9 @@ spec: {{- range $key, $value := .Values.enterpriseGateway.extraArgs }} - "-{{ $key }}={{ $value }}" {{- end }} + {{- range $key, $value := .Values.global.extraArgs }} + - "-{{ $key }}={{ $value }}" + {{- end }} volumeMounts: {{- if .Values.enterpriseGateway.extraVolumeMounts }} {{ toYaml .Values.enterpriseGateway.extraVolumeMounts | nindent 12}} diff --git a/charts/tempo-distributed/templates/gateway/deployment-gateway.yaml b/charts/tempo-distributed/templates/gateway/deployment-gateway.yaml index ce1d012867..4adc541c18 100644 --- a/charts/tempo-distributed/templates/gateway/deployment-gateway.yaml +++ b/charts/tempo-distributed/templates/gateway/deployment-gateway.yaml @@ -76,9 +76,14 @@ spec: {{- toYaml . | nindent 12 }} {{- end }} {{- end }} - {{- with .Values.gateway.extraEnvFrom }} + {{- if or .Values.global.extraEnvFrom .Values.gateway.extraEnvFrom }} envFrom: - {{- toYaml . | nindent 12 }} + {{- with .Values.gateway.extraEnvFrom }} + {{- toYaml . | nindent 12 }} + {{- end }} + {{- with .Values.global.extraEnvFrom }} + {{- toYaml . | nindent 12 }} + {{- end }} {{- end }} readinessProbe: {{- toYaml .Values.gateway.readinessProbe | nindent 12 }} diff --git a/charts/tempo-distributed/templates/ingester/statefulset-ingester.yaml b/charts/tempo-distributed/templates/ingester/statefulset-ingester.yaml index 3d6ffa9e30..9fc59d543b 100644 --- a/charts/tempo-distributed/templates/ingester/statefulset-ingester.yaml +++ b/charts/tempo-distributed/templates/ingester/statefulset-ingester.yaml @@ -79,6 +79,9 @@ spec: {{- with .Values.ingester.extraArgs }} {{- toYaml . | nindent 12 }} {{- end }} + {{ - with .Values.global.extraArgs }} + {{- toYaml . | nindent 12 }} + {{- end }} image: {{ include "tempo.imageReference" $dict }} imagePullPolicy: {{ .Values.tempo.image.pullPolicy }} name: ingester @@ -98,9 +101,14 @@ spec: {{- toYaml . | nindent 12 }} {{- end }} {{- end }} - {{- with .Values.ingester.extraEnvFrom }} + {{- if or .Values.global.extraEnvFrom .Values.ingester.extraEnvFrom }} envFrom: - {{- toYaml . | nindent 12 }} + {{- with .Values.global.extraEnvFrom }} + {{- toYaml . | nindent 12 }} + {{- end }} + {{- with .Values.ingester.extraEnvFrom }} + {{- toYaml . | nindent 12 }} + {{- end }} {{- end }} readinessProbe: {{- toYaml .Values.tempo.readinessProbe | nindent 12 }} diff --git a/charts/tempo-distributed/templates/memcached/statefulset-memcached.yaml b/charts/tempo-distributed/templates/memcached/statefulset-memcached.yaml index dab6a214d7..06ac188625 100644 --- a/charts/tempo-distributed/templates/memcached/statefulset-memcached.yaml +++ b/charts/tempo-distributed/templates/memcached/statefulset-memcached.yaml @@ -73,9 +73,14 @@ spec: {{- toYaml . | nindent 12 }} {{- end }} {{- end }} - {{- with .Values.memcached.extraEnvFrom }} + {{- if or .Values.global.extraEnvFrom .Values.memcached.extraEnvFrom }} envFrom: - {{- toYaml . | nindent 12 }} + {{- with .Values.global.extraEnvFrom }} + {{- toYaml . | nindent 12 }} + {{- end }} + {{- with .Values.memcached.extraEnvFrom }} + {{- toYaml . | nindent 12 }} + {{- end }} {{- end }} {{- with .Values.memcached.readinessProbe }} readinessProbe: diff --git a/charts/tempo-distributed/templates/metrics-generator/statefulset-metrics-generator.yaml b/charts/tempo-distributed/templates/metrics-generator/statefulset-metrics-generator.yaml index 19ff51a43b..bec1efcf0d 100644 --- a/charts/tempo-distributed/templates/metrics-generator/statefulset-metrics-generator.yaml +++ b/charts/tempo-distributed/templates/metrics-generator/statefulset-metrics-generator.yaml @@ -67,6 +67,9 @@ spec: {{- with .Values.metricsGenerator.extraArgs }} {{- toYaml . | nindent 12 }} {{- end }} + {{- with .Values.global.extraArgs }} + {{- toYaml . | nindent 12 }} + {{- end }} image: {{ include "tempo.imageReference" $dict }} imagePullPolicy: {{ .Values.tempo.image.pullPolicy }} name: metrics-generator @@ -84,9 +87,14 @@ spec: {{- toYaml . | nindent 12 }} {{- end }} {{- end }} - {{- with .Values.metricsGenerator.extraEnvFrom }} + {{- if or .Values.global.extraEnvFrom .Values.metricsGenerator.extraEnvFrom }} envFrom: - {{- toYaml . | nindent 12 }} + {{- with .Values.global.extraEnvFrom }} + {{- toYaml . | nindent 12 }} + {{- end }} + {{- with .Values.metricsGenerator.extraEnvFrom }} + {{- toYaml . | nindent 12 }} + {{- end }} {{- end }} readinessProbe: {{- toYaml .Values.tempo.readinessProbe | nindent 12 }} diff --git a/charts/tempo-distributed/templates/querier/deployment-querier.yaml b/charts/tempo-distributed/templates/querier/deployment-querier.yaml index 220fb99a9f..e804402397 100644 --- a/charts/tempo-distributed/templates/querier/deployment-querier.yaml +++ b/charts/tempo-distributed/templates/querier/deployment-querier.yaml @@ -66,6 +66,9 @@ spec: {{- with .Values.querier.extraArgs }} {{- toYaml . | nindent 12 }} {{- end }} + {{- with .Values.global.extraArgs }} + {{- toYaml . | nindent 12 }} + {{- end }} image: {{ include "tempo.imageReference" $dict }} imagePullPolicy: {{ .Values.tempo.image.pullPolicy }} name: querier @@ -84,9 +87,14 @@ spec: {{- toYaml . | nindent 12 }} {{- end }} {{- end }} - {{- with .Values.querier.extraEnvFrom }} + {{- if or .Values.global.extraEnvFrom .Values.querier.extraEnvFrom }} envFrom: - {{- toYaml . | nindent 12 }} + {{- with .Values.global.extraEnvFrom }} + {{- toYaml . | nindent 12 }} + {{- end }} + {{- with .Values.querier.extraEnvFrom }} + {{- toYaml . | nindent 12 }} + {{- end }} {{- end }} resources: {{- toYaml .Values.querier.resources | nindent 12 }} diff --git a/charts/tempo-distributed/templates/query-frontend/deployment-query-frontend.yaml b/charts/tempo-distributed/templates/query-frontend/deployment-query-frontend.yaml index cc4234c332..1b92d6560b 100644 --- a/charts/tempo-distributed/templates/query-frontend/deployment-query-frontend.yaml +++ b/charts/tempo-distributed/templates/query-frontend/deployment-query-frontend.yaml @@ -83,9 +83,14 @@ spec: {{- toYaml . | nindent 12 }} {{- end }} {{- end }} - {{- with .Values.queryFrontend.extraEnvFrom }} + {{- if or .Values.global.extraEnvFrom .Values.queryFrontend.extraEnvFrom }} envFrom: - {{- toYaml . | nindent 12 }} + {{- with .Values.global.extraEnvFrom }} + {{- toYaml . | nindent 12 }} + {{- end }} + {{- with .Values.queryFrontend.extraEnvFrom }} + {{- toYaml . | nindent 12 }} + {{- end }} {{- end }} resources: {{- toYaml .Values.queryFrontend.resources | nindent 12 }} @@ -113,6 +118,9 @@ spec: {{- with .Values.queryFrontend.query.extraArgs }} {{- toYaml . | nindent 12 }} {{- end }} + {{- with .Values.global.extraArgs }} + {{- toYaml . | nindent 12 }} + {{- end }} image: {{ include "tempo.queryImage" . }} imagePullPolicy: {{ .Values.tempo.image.pullPolicy }} name: tempo-query diff --git a/charts/tempo-distributed/templates/tokengen/tokengen-job.yaml b/charts/tempo-distributed/templates/tokengen/tokengen-job.yaml index 860798145e..ea608bf6d2 100644 --- a/charts/tempo-distributed/templates/tokengen/tokengen-job.yaml +++ b/charts/tempo-distributed/templates/tokengen/tokengen-job.yaml @@ -42,7 +42,7 @@ spec: {{- toYaml . | nindent 8 }} {{- end }} {{- if .Values.tokengenJob.storeTokenInSecret }} - initContainers: + initContainers: {{- if .Values.tokengenJob.initContainers }} {{- toYaml .Values.tokengenJob.initContainers | nindent 8 }} {{- end }} @@ -60,6 +60,9 @@ spec: {{- range $key, $value := .Values.tokengenJob.extraArgs }} - "-{{ $key }}={{ $value }}" {{- end }} + {{- range $key, $value := .Values.global.extraArgs }} + - "-{{ $key }}={{ $value }}" + {{- end }} volumeMounts: - mountPath: /conf name: config diff --git a/charts/tempo-distributed/values.yaml b/charts/tempo-distributed/values.yaml index f3a269eca5..065af53334 100755 --- a/charts/tempo-distributed/values.yaml +++ b/charts/tempo-distributed/values.yaml @@ -19,6 +19,12 @@ global: # -- Common environment variables to add to all pods directly managed by this chart. # scope: admin-api, compactor, distributor, enterprise-federation-frontend, gateway, ingester, memcached, metrics-generator, querier, query-frontend, tokengen extraEnv: [] + # -- Common environment variables which come from a ConfigMap or Secret to add to all pods directly managed by this chart. + # scope: admin-api, compactor, distributor, enterprise-federation-frontend, gateway, ingester, memcached, metrics-generator, querier, query-frontend, tokengen + extraEnvFrom: [] + # -- Common args to add to all pods directly managed by this chart. + # scope: admin-api, compactor, distributor, enterprise-federation-frontend, gateway, ingester, memcached, metrics-generator, querier, query-frontend, tokengen + extraArgs: [] # -- Global storage class to be used for persisted components storageClass: null fullnameOverride: '' From 346f319961a8c482f89bebe52ccad53b080baf62 Mon Sep 17 00:00:00 2001 From: AvivGuiser Date: Sat, 19 Jul 2025 01:42:10 +0300 Subject: [PATCH 2/5] fix lint issues Signed-off-by: AvivGuiser --- .../templates/ingester/statefulset-ingester.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/tempo-distributed/templates/ingester/statefulset-ingester.yaml b/charts/tempo-distributed/templates/ingester/statefulset-ingester.yaml index 9fc59d543b..d89950e8e2 100644 --- a/charts/tempo-distributed/templates/ingester/statefulset-ingester.yaml +++ b/charts/tempo-distributed/templates/ingester/statefulset-ingester.yaml @@ -79,7 +79,7 @@ spec: {{- with .Values.ingester.extraArgs }} {{- toYaml . | nindent 12 }} {{- end }} - {{ - with .Values.global.extraArgs }} + {{- with .Values.global.extraArgs }} {{- toYaml . | nindent 12 }} {{- end }} image: {{ include "tempo.imageReference" $dict }} From e2750750e9bb39e925692cee2d041283ea997b43 Mon Sep 17 00:00:00 2001 From: AvivGuiser Date: Tue, 29 Jul 2025 22:04:04 +0300 Subject: [PATCH 3/5] bump chart version Signed-off-by: AvivGuiser --- charts/tempo-distributed/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/tempo-distributed/README.md b/charts/tempo-distributed/README.md index a20d8e9e27..95186ae2d5 100644 --- a/charts/tempo-distributed/README.md +++ b/charts/tempo-distributed/README.md @@ -1,6 +1,6 @@ # tempo-distributed -![Version: 1.46.5](https://img.shields.io/badge/Version-1.46.5-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.8.2](https://img.shields.io/badge/AppVersion-2.8.2-informational?style=flat-square) +![Version: 1.47.0](https://img.shields.io/badge/Version-1.47.0-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 From b5f4f57f3445c705023860a8a785537f97720ca7 Mon Sep 17 00:00:00 2001 From: AvivGuiser Date: Sat, 9 Aug 2025 11:31:50 +0300 Subject: [PATCH 4/5] bump chart version Signed-off-by: AvivGuiser --- charts/tempo-distributed/Chart.yaml | 2 +- charts/tempo-distributed/README.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/tempo-distributed/Chart.yaml b/charts/tempo-distributed/Chart.yaml index 3a4ba72137..4b226d86c4 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.5 +version: 1.47.1 appVersion: 2.8.2 engine: gotpl home: https://grafana.com/docs/tempo/latest/ diff --git a/charts/tempo-distributed/README.md b/charts/tempo-distributed/README.md index 95186ae2d5..9467c35ebf 100644 --- a/charts/tempo-distributed/README.md +++ b/charts/tempo-distributed/README.md @@ -1,6 +1,6 @@ # tempo-distributed -![Version: 1.47.0](https://img.shields.io/badge/Version-1.47.0-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.47.1](https://img.shields.io/badge/Version-1.47.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.8.2](https://img.shields.io/badge/AppVersion-2.8.2-informational?style=flat-square) Grafana Tempo in MicroService mode @@ -1162,4 +1162,4 @@ traces: receiverConfig: {} # -- Default OTLP gRPC port port: 4317 -``` +``` \ No newline at end of file From 14641ca0b3cfd1bd912ca8df260e1b32f3b6ef44 Mon Sep 17 00:00:00 2001 From: AvivGuiser Date: Tue, 26 Aug 2025 10:48:37 +0300 Subject: [PATCH 5/5] bump chart version Signed-off-by: AvivGuiser --- charts/tempo-distributed/Chart.yaml | 2 +- charts/tempo-distributed/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/charts/tempo-distributed/Chart.yaml b/charts/tempo-distributed/Chart.yaml index 4b226d86c4..d8baabdfa1 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.47.1 +version: 1.47.0 appVersion: 2.8.2 engine: gotpl home: https://grafana.com/docs/tempo/latest/ diff --git a/charts/tempo-distributed/README.md b/charts/tempo-distributed/README.md index 9467c35ebf..16d56e80ac 100644 --- a/charts/tempo-distributed/README.md +++ b/charts/tempo-distributed/README.md @@ -1,6 +1,6 @@ # tempo-distributed -![Version: 1.47.1](https://img.shields.io/badge/Version-1.47.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.8.2](https://img.shields.io/badge/AppVersion-2.8.2-informational?style=flat-square) +![Version: 1.47.0](https://img.shields.io/badge/Version-1.47.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.8.2](https://img.shields.io/badge/AppVersion-2.8.2-informational?style=flat-square) Grafana Tempo in MicroService mode