Skip to content

Commit 44e18a2

Browse files
Merge pull request #3236 from grafana/tempo-distributed-overrides-fix
[tempo-distributed] New overrides format bugfix
2 parents e6ed5e8 + 103a05d commit 44e18a2

File tree

5 files changed

+16
-16
lines changed

5 files changed

+16
-16
lines changed

charts/tempo-distributed/Chart.yaml

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

charts/tempo-distributed/README.md

+7-7
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# tempo-distributed
22

3-
![Version: 1.15.1](https://img.shields.io/badge/Version-1.15.1-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.5.0](https://img.shields.io/badge/AppVersion-2.5.0-informational?style=flat-square)
3+
![Version: 1.15.2](https://img.shields.io/badge/Version-1.15.2-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 2.5.0](https://img.shields.io/badge/AppVersion-2.5.0-informational?style=flat-square)
44

55
Grafana Tempo in MicroService mode
66

@@ -46,14 +46,14 @@ The command removes all the Kubernetes components associated with the chart and
4646

4747
A major chart version change indicates that there is an incompatible breaking change needing manual actions.
4848

49-
### from Chart versions < 1.13.0
49+
### From Chart versions < 1.15.2
5050

51-
EXPERIMENTAL: Zone Aware Replication has been added to the ingester statefulset.
52-
Attention, the calculation of the pods per AZ is as follows ```(.values.ingester.replicas + numberOfZones -1)/numberOfZones```
51+
Switch to new overrides format, see https://grafana.com/docs/tempo/latest/configuration/#overrides.
5352

54-
### From Chart versions < 1.8.0
53+
### From Chart versions < 1.13.0
5554

56-
Switch to new overrides format, see https://grafana.com/docs/tempo/latest/configuration/#overrides.
55+
EXPERIMENTAL: Zone Aware Replication has been added to the ingester statefulset.
56+
Attention, the calculation of the pods per AZ is as follows ```(.values.ingester.replicas + numberOfZones -1)/numberOfZones```
5757

5858
### From Chart versions < 1.6.0
5959

@@ -661,7 +661,7 @@ The memcached default args are removed and should be provided manually. The sett
661661
| minio.rootPassword | string | `"supersecret"` | |
662662
| minio.rootUser | string | `"grafana-tempo"` | |
663663
| multitenancyEnabled | bool | `false` | |
664-
| overrides | string | `"overrides: {}\n"` | |
664+
| overrides | object | `{}` | |
665665
| prometheusRule.annotations | object | `{}` | PrometheusRule annotations |
666666
| prometheusRule.enabled | bool | `false` | If enabled, a PrometheusRule resource for Prometheus Operator is created |
667667
| prometheusRule.groups | list | `[]` | Contents of Prometheus rules file |

charts/tempo-distributed/README.md.gotmpl

+5-5
Original file line numberDiff line numberDiff line change
@@ -39,14 +39,14 @@ The command removes all the Kubernetes components associated with the chart and
3939

4040
A major chart version change indicates that there is an incompatible breaking change needing manual actions.
4141

42-
### from Chart versions < 1.13.0
42+
### From Chart versions < 1.15.2
4343

44-
EXPERIMENTAL: Zone Aware Replication has been added to the ingester statefulset.
45-
Attention, the calculation of the pods per AZ is as follows ```(.values.ingester.replicas + numberOfZones -1)/numberOfZones```
44+
Switch to new overrides format, see https://grafana.com/docs/tempo/latest/configuration/#overrides.
4645

47-
### From Chart versions < 1.8.0
46+
### From Chart versions < 1.13.0
4847

49-
Switch to new overrides format, see https://grafana.com/docs/tempo/latest/configuration/#overrides.
48+
EXPERIMENTAL: Zone Aware Replication has been added to the ingester statefulset.
49+
Attention, the calculation of the pods per AZ is as follows ```(.values.ingester.replicas + numberOfZones -1)/numberOfZones```
5050

5151
### From Chart versions < 1.6.0
5252

charts/tempo-distributed/templates/_helpers.tpl

+2-1
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,8 @@ Calculate the config from structured and unstructured text input
188188
Renders the overrides config
189189
*/}}
190190
{{- define "tempo.overridesConfig" -}}
191-
{{ tpl .Values.overrides . }}
191+
overrides:
192+
{{ toYaml .Values.overrides | indent 2 }}
192193
{{- end -}}
193194

194195
{{/*

charts/tempo-distributed/values.yaml

+1-2
Original file line numberDiff line numberDiff line change
@@ -1436,8 +1436,7 @@ global_overrides:
14361436
per_tenant_override_config: /runtime-config/overrides.yaml
14371437

14381438
# Per tenants overrides
1439-
overrides: |
1440-
overrides: {}
1439+
overrides: {}
14411440

14421441
# memcached is for all of the Tempo pieces to coordinate with each other.
14431442
# you can use your self memcacherd by set enable: false and host + service

0 commit comments

Comments
 (0)