File tree Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Expand file tree Collapse file tree 4 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
2
2
name : tempo-distributed
3
3
description : Grafana Tempo in MicroService mode
4
4
type : application
5
- version : 1.42.0
5
+ version : 1.42.1
6
6
appVersion : 2.8.0
7
7
engine : gotpl
8
8
home : https://grafana.com/docs/tempo/latest/
Original file line number Diff line number Diff line change 1
1
# tempo-distributed
2
2
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 )
4
4
5
5
Grafana Tempo in MicroService mode
6
6
@@ -504,6 +504,7 @@ The memcached default args are removed and should be provided manually. The sett
504
504
| gateway.basicAuth.username | string | `nil` | The basic auth username for the gateway |
505
505
| gateway.enabled | bool | `false` | Specifies whether the gateway should be enabled |
506
506
| gateway.extraArgs | list | `[]` | Additional CLI args for the gateway |
507
+ | gateway.extraContainers | list | `[]` | Containers to add to the gateway pods |
507
508
| gateway.extraEnv | list | `[]` | Environment variables to add to the gateway pods |
508
509
| gateway.extraEnvFrom | list | `[]` | Environment variables from secrets or configmaps to add to the gateway pods |
509
510
| gateway.extraVolumeMounts | list | `[]` | Volume mounts to add to the gateway pods |
Original file line number Diff line number Diff line change @@ -101,6 +101,9 @@ spec:
101
101
securityContext :
102
102
{{- toYaml . | nindent 12 }}
103
103
{{- end }}
104
+ {{- with .Values.gateway.extraContainers }}
105
+ {{- toYaml . | nindent 8 }}
106
+ {{- end }}
104
107
{{- if semverCompare ">= 1.19-0" .Capabilities.KubeVersion.Version }}
105
108
{{- with .Values.gateway.topologySpreadConstraints }}
106
109
topologySpreadConstraints :
Original file line number Diff line number Diff line change @@ -1964,6 +1964,8 @@ gateway:
1964
1964
extraVolumes : []
1965
1965
# -- Volume mounts to add to the gateway pods
1966
1966
extraVolumeMounts : []
1967
+ # -- Containers to add to the gateway pods
1968
+ extraContainers : []
1967
1969
# -- Resource requests and limits for the gateway
1968
1970
resources : {}
1969
1971
# -- Grace period to allow the gateway to shutdown before it is killed
You can’t perform that action at this time.
0 commit comments