Skip to content

Commit e64a7f9

Browse files
JBodkin-AmphoraJames Bodkin
authored andcommitted
Add revisionHistoryLimit to tempo ingester and memcached
Signed-off-by: James Bodkin <[email protected]>
1 parent dc7572f commit e64a7f9

File tree

4 files changed

+10
-2
lines changed

4 files changed

+10
-2
lines changed

charts/tempo-distributed/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: tempo-distributed
33
description: Grafana Tempo in MicroService mode
44
type: application
5-
version: 1.47.0
5+
version: 1.47.1
66
appVersion: 2.8.2
77
engine: gotpl
88
home: https://grafana.com/docs/tempo/latest/

charts/tempo-distributed/README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# tempo-distributed
22

3-
![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)
3+
4+
![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)
45

56
Grafana Tempo in MicroService mode
67

@@ -44,6 +45,7 @@ helm delete my-release
4445

4546
The command removes all the Kubernetes components associated with the chart and deletes the release.
4647

48+
4749
## Upgrading
4850

4951
A major chart version change indicates that there is an incompatible breaking change needing manual actions.
@@ -144,6 +146,7 @@ minio:
144146
```
145147
* allow configuration to be stored in a secret. See the documentation for `useExternalConfig` and `configStorageType` in the values file for more details.
146148

149+
147150
### From chart version < 0.26.0
148151

149152
Version 0.26.0
@@ -1029,6 +1032,8 @@ The other components are optional and must be explicitly enabled.
10291032
| admin-api | yes |
10301033
| enterprise-gateway | yes |
10311034

1035+
1036+
10321037
## [Configuration](https://grafana.com/docs/tempo/latest/configuration/)
10331038

10341039
This chart configures Tempo in microservices mode.
@@ -1085,6 +1090,7 @@ global_overrides:
10851090
* Volumes are mounted to `/var/tempo`. The various directories Tempo needs should be configured as subdirectories (e. g. `/var/tempo/wal`, `/var/tempo/traces`). Tempo will create the directories automatically.
10861091
* The config file is mounted to `/conf/tempo-query.yaml` and passed as CLI arg.
10871092

1093+
10881094
### Example configuration using S3 for storage
10891095

10901096
```yaml

charts/tempo-distributed/templates/ingester/statefulset-ingester.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ spec:
2525
{{- if not .Values.ingester.autoscaling.enabled }}
2626
replicas: {{ $rolloutZone.replicas }}
2727
{{- end }}
28+
revisionHistoryLimit: {{ .Values.tempo.revisionHistoryLimit }}
2829
selector:
2930
matchLabels:
3031
{{- include "ingester.selectorLabels" $dict | nindent 6}}

charts/tempo-distributed/templates/memcached/statefulset-memcached.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ metadata:
1313
{{- end }}
1414
spec:
1515
replicas: {{ .Values.memcached.replicas }}
16+
revisionHistoryLimit: {{ .Values.tempo.revisionHistoryLimit }}
1617
selector:
1718
matchLabels:
1819
{{- include "tempo.selectorLabels" $dict | nindent 6 }}

0 commit comments

Comments
 (0)