Skip to content

Commit f4d052a

Browse files
Merge pull request #3805 from nobbs/fix/tempo-distributed-serviceaccount-labels
[tempo-distributed] add service account labels support
2 parents 1d9dbf1 + 57874fe commit f4d052a

File tree

4 files changed

+8
-2
lines changed

4 files changed

+8
-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.53.0
5+
version: 1.53.1
66
appVersion: 2.9.0
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.53.0](https://img.shields.io/badge/Version-1.53.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.9.0](https://img.shields.io/badge/AppVersion-2.9.0-informational?style=flat-square)
3+
![Version: 1.53.1](https://img.shields.io/badge/Version-1.53.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.9.0](https://img.shields.io/badge/AppVersion-2.9.0-informational?style=flat-square)
44

55
Grafana Tempo in MicroService mode
66

@@ -967,6 +967,7 @@ The memcached default args are removed and should be provided manually. The sett
967967
| serviceAccount.automountServiceAccountToken | bool | `false` | |
968968
| serviceAccount.create | bool | `true` | Specifies whether a ServiceAccount should be created |
969969
| serviceAccount.imagePullSecrets | list | `[]` | Image pull secrets for the service account |
970+
| serviceAccount.labels | object | `{}` | Labels for the service account |
970971
| serviceAccount.name | string | `nil` | The name of the ServiceAccount to use. If not set and create is true, a name is generated using the fullname template |
971972
| storage.admin.backend | string | `"filesystem"` | The supported storage backends are gcs, s3 and azure, as specified in https://grafana.com/docs/enterprise-traces/latest/configure/reference/#admin_client_config |
972973
| storage.trace.backend | string | `"local"` | The supported storage backends are gcs, s3 and azure, as specified in https://grafana.com/docs/tempo/latest/configuration/#storage |

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
@@ -127,6 +127,8 @@ serviceAccount:
127127
name: null
128128
# -- Image pull secrets for the service account
129129
imagePullSecrets: []
130+
# -- Labels for the service account
131+
labels: {}
130132
# -- Annotations for the service account
131133
annotations: {}
132134
automountServiceAccountToken: false

0 commit comments

Comments
 (0)