Skip to content

Commit 63f5bcc

Browse files
committed
[tempo-distributed] add service account labels support
Signed-off-by: Alexej Disterhoft <[email protected]>
1 parent c9db19b commit 63f5bcc

File tree

3 files changed

+6
-1
lines changed

3 files changed

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

charts/tempo-distributed/templates/serviceaccount.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ metadata:
66
namespace: {{ .Release.Namespace }}
77
labels:
88
{{- include "tempo.labels" (dict "ctx" .) | nindent 4 }}
9+
{{- with .Values.serviceAccount.labels }}
10+
{{- toYaml . | nindent 4 }}
11+
{{- end }}
912
{{- with .Values.serviceAccount.annotations }}
1013
annotations:
1114
{{- toYaml . | nindent 4 }}

charts/tempo-distributed/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,8 @@ serviceAccount:
109109
name: null
110110
# -- Image pull secrets for the service account
111111
imagePullSecrets: []
112+
# -- Labels for the service account
113+
labels: {}
112114
# -- Annotations for the service account
113115
annotations: {}
114116
automountServiceAccountToken: false

0 commit comments

Comments
 (0)