Skip to content

Commit 7479c1c

Browse files
authored
Merge branch 'main' into patch-1
2 parents 54bc5f4 + 29fede7 commit 7479c1c

File tree

4 files changed

+9
-2
lines changed

4 files changed

+9
-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.1
5+
version: 1.47.2
66
appVersion: 2.8.2
77
engine: gotpl
88
home: https://grafana.com/docs/tempo/latest/

charts/tempo-distributed/README.md

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

3-
![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)
3+
![Version: 1.47.2](https://img.shields.io/badge/Version-1.47.2-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)
44

55
Grafana Tempo in MicroService mode
66

@@ -384,6 +384,7 @@ The memcached default args are removed and should be provided manually. The sett
384384
| distributor.image.repository | string | `nil` | Docker image repository for the distributor image. Overrides `tempo.image.repository` |
385385
| distributor.image.tag | string | `nil` | Docker image tag for the distributor image. Overrides `tempo.image.tag` |
386386
| distributor.initContainers | list | `[]` | Init containers to add to the distributor pods |
387+
| distributor.lifecycle | object | `{}` | Container lifecycle hooks for the distributor |
387388
| distributor.maxUnavailable | int | `1` | Pod Disruption Budget maxUnavailable |
388389
| distributor.minReadySeconds | int | `10` | Minimum number of seconds for which a newly created Pod should be ready without any of its containers crashing/terminating |
389390
| distributor.nodeSelector | object | `{}` | Node selector for distributor pods |

charts/tempo-distributed/templates/distributor/deployment-distributor.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,10 @@ spec:
146146
securityContext:
147147
{{- toYaml . | nindent 12 }}
148148
{{- end }}
149+
{{- with .Values.distributor.lifecycle }}
150+
lifecycle:
151+
{{- toYaml . | nindent 12 }}
152+
{{- end }}
149153
volumeMounts:
150154
- mountPath: /conf
151155
name: config

charts/tempo-distributed/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -553,6 +553,8 @@ distributor:
553553
resources: {}
554554
# -- Grace period to allow the distributor to shutdown before it is killed
555555
terminationGracePeriodSeconds: 30
556+
# -- Container lifecycle hooks for the distributor
557+
lifecycle: {}
556558
# -- topologySpread for distributor pods. Passed through `tpl` and, thus, to be configured as string
557559
# @default -- Defaults to allow skew no more then 1 node per AZ
558560
topologySpreadConstraints: |

0 commit comments

Comments
 (0)