Skip to content

Commit f459c80

Browse files
Merge pull request #3740 from iamhalje/extraContainersTempoGateway
[tempo-distributed] add support for extraContainers in gateway deployment
2 parents 4cb34e3 + 01d7525 commit f459c80

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.42.0
5+
version: 1.42.1
66
appVersion: 2.8.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.42.0](https://img.shields.io/badge/Version-1.42.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.8.0](https://img.shields.io/badge/AppVersion-2.8.0-informational?style=flat-square)
3+
![Version: 1.42.1](https://img.shields.io/badge/Version-1.42.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.8.0](https://img.shields.io/badge/AppVersion-2.8.0-informational?style=flat-square)
44

55
Grafana Tempo in MicroService mode
66

@@ -504,6 +504,7 @@ The memcached default args are removed and should be provided manually. The sett
504504
| gateway.basicAuth.username | string | `nil` | The basic auth username for the gateway |
505505
| gateway.enabled | bool | `false` | Specifies whether the gateway should be enabled |
506506
| gateway.extraArgs | list | `[]` | Additional CLI args for the gateway |
507+
| gateway.extraContainers | list | `[]` | Containers to add to the gateway pods |
507508
| gateway.extraEnv | list | `[]` | Environment variables to add to the gateway pods |
508509
| gateway.extraEnvFrom | list | `[]` | Environment variables from secrets or configmaps to add to the gateway pods |
509510
| gateway.extraVolumeMounts | list | `[]` | Volume mounts to add to the gateway pods |

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,9 @@ spec:
101101
securityContext:
102102
{{- toYaml . | nindent 12 }}
103103
{{- end }}
104+
{{- with .Values.gateway.extraContainers }}
105+
{{- toYaml . | nindent 8 }}
106+
{{- end }}
104107
{{- if semverCompare ">= 1.19-0" .Capabilities.KubeVersion.Version }}
105108
{{- with .Values.gateway.topologySpreadConstraints }}
106109
topologySpreadConstraints:

charts/tempo-distributed/values.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1964,6 +1964,8 @@ gateway:
19641964
extraVolumes: []
19651965
# -- Volume mounts to add to the gateway pods
19661966
extraVolumeMounts: []
1967+
# -- Containers to add to the gateway pods
1968+
extraContainers: []
19671969
# -- Resource requests and limits for the gateway
19681970
resources: {}
19691971
# -- Grace period to allow the gateway to shutdown before it is killed

0 commit comments

Comments
 (0)