From f17f2ab57f10e38115ce474414803b41c485dc07 Mon Sep 17 00:00:00 2001 From: James Bodkin Date: Fri, 1 Aug 2025 10:55:31 +0100 Subject: [PATCH] Add revisionHistoryLimit to tempo ingester and memcached Signed-off-by: James Bodkin --- charts/tempo-distributed/Chart.yaml | 2 +- charts/tempo-distributed/README.md | 2 +- .../templates/ingester/statefulset-ingester.yaml | 1 + .../templates/memcached/statefulset-memcached.yaml | 1 + 4 files changed, 4 insertions(+), 2 deletions(-) diff --git a/charts/tempo-distributed/Chart.yaml b/charts/tempo-distributed/Chart.yaml index d8baabdfa1..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.47.0 +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 16d56e80ac..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.2](https://img.shields.io/badge/AppVersion-2.8.2-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 diff --git a/charts/tempo-distributed/templates/ingester/statefulset-ingester.yaml b/charts/tempo-distributed/templates/ingester/statefulset-ingester.yaml index d89950e8e2..9124b9dca8 100644 --- a/charts/tempo-distributed/templates/ingester/statefulset-ingester.yaml +++ b/charts/tempo-distributed/templates/ingester/statefulset-ingester.yaml @@ -25,6 +25,7 @@ spec: {{- if not .Values.ingester.autoscaling.enabled }} replicas: {{ $rolloutZone.replicas }} {{- end }} + revisionHistoryLimit: {{ .Values.tempo.revisionHistoryLimit }} selector: matchLabels: {{- include "ingester.selectorLabels" $dict | nindent 6}} diff --git a/charts/tempo-distributed/templates/memcached/statefulset-memcached.yaml b/charts/tempo-distributed/templates/memcached/statefulset-memcached.yaml index 06ac188625..51cd45d446 100644 --- a/charts/tempo-distributed/templates/memcached/statefulset-memcached.yaml +++ b/charts/tempo-distributed/templates/memcached/statefulset-memcached.yaml @@ -13,6 +13,7 @@ metadata: {{- end }} spec: replicas: {{ .Values.memcached.replicas }} + revisionHistoryLimit: {{ .Values.tempo.revisionHistoryLimit }} selector: matchLabels: {{- include "tempo.selectorLabels" $dict | nindent 6 }}