Skip to content

Commit 8f014a2

Browse files
committed
make block version default to Tempo
Signed-off-by: Joe Elliott <number101010@gmail.com>
1 parent 4182eb2 commit 8f014a2

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
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.5.0
5+
version: 1.5.1
66
appVersion: 2.2.0
77
engine: gotpl
88
home: https://grafana.com/docs/tempo/latest/

charts/tempo-distributed/README.md

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

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

55
Grafana Tempo in MicroService mode
66

@@ -442,7 +442,7 @@ The memcached default args are removed and should be provided manually. The sett
442442
| ingester.appProtocol | object | `{"grpc":null}` | Adds the appProtocol field to the ingester service. This allows ingester to work with istio protocol selection. |
443443
| ingester.appProtocol.grpc | string | `nil` | Set the optional grpc service protocol. Ex: "grpc", "http2" or "https" |
444444
| ingester.autoscaling.behavior | object | `{}` | Autoscaling behavior configuration for the ingester |
445-
| ingester.autoscaling.enabled | bool | `false` | Enable autoscaling for the ingester |
445+
| ingester.autoscaling.enabled | bool | `false` | Enable autoscaling for the ingester. WARNING: Autoscaling ingesters can result in lost data. Only do this if you know what you're doing. |
446446
| ingester.autoscaling.maxReplicas | int | `3` | Maximum autoscaling replicas for the ingester |
447447
| ingester.autoscaling.minReplicas | int | `1` | Minimum autoscaling replicas for the ingester |
448448
| ingester.autoscaling.targetCPUUtilizationPercentage | int | `60` | Target CPU utilisation percentage for the ingester |
@@ -701,7 +701,7 @@ The memcached default args are removed and should be provided manually. The sett
701701
| 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 |
702702
| storage.admin.backend | string | `"filesystem"` | The supported storage backends are gcs, s3 and azure, as specified in https://grafana.com/docs/enterprise-traces/latest/config/reference/#admin_client_config |
703703
| 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 |
704-
| storage.trace.block.version | string | `"vParquet"` | The supported block versions are v2 and vParquet, as specified in https://grafana.com/docs/tempo/latest/configuration/parquet/ |
704+
| storage.trace.block.version | string | `nil` | The supported block versions are specified here https://grafana.com/docs/tempo/latest/configuration/parquet/ |
705705
| tempo.image.pullPolicy | string | `"IfNotPresent"` | |
706706
| tempo.image.pullSecrets | list | `[]` | Optional list of imagePullSecrets. Overrides `global.image.pullSecrets` |
707707
| tempo.image.registry | string | `"docker.io"` | The Docker registry |

charts/tempo-distributed/values.yaml

+5-3
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ ingester:
107107
# -- Number of replicas for the ingester
108108
replicas: 3
109109
autoscaling:
110-
# -- Enable autoscaling for the ingester
110+
# -- Enable autoscaling for the ingester. WARNING: Autoscaling ingesters can result in lost data. Only do this if you know what you're doing.
111111
enabled: false
112112
# -- Minimum autoscaling replicas for the ingester
113113
minReplicas: 1
@@ -1187,7 +1187,9 @@ config: |
11871187
storage:
11881188
trace:
11891189
block:
1190+
{{- if .Values.storage.trace.block.version }}
11901191
version: {{.Values.storage.trace.block.version}}
1192+
{{- end }}
11911193
backend: {{.Values.storage.trace.backend}}
11921194
{{- if eq .Values.storage.trace.backend "s3"}}
11931195
s3:
@@ -1245,8 +1247,8 @@ storage:
12451247
trace:
12461248
# Settings for the block storage backend and buckets.
12471249
block:
1248-
# -- The supported block versions are v2 and vParquet, as specified in https://grafana.com/docs/tempo/latest/configuration/parquet/
1249-
version: vParquet
1250+
# -- The supported block versions are specified here https://grafana.com/docs/tempo/latest/configuration/parquet/
1251+
version: null
12501252
# -- The supported storage backends are gcs, s3 and azure, as specified in https://grafana.com/docs/tempo/latest/configuration/#storage
12511253
backend: local
12521254
# Settings for the Admin client storage backend and buckets. Only valid is enterprise.enabled is true.

0 commit comments

Comments
 (0)