Skip to content

Commit fa3624e

Browse files
soohyunmeclaude
andcommitted
fix(loki): rename schema_config → schemaConfig for chart v6.x
The Loki Helm chart v6.x validate.yaml checks $.Values.loki.schemaConfig (camelCase), so the snake_case schema_config key we were using was invisible to the chart's validation and triggered "You must provide a schema_config for Loki". Also bump schema start date to 2024-04-01 and align index prefix with chart convention (loki_index_). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent a301f9c commit fa3624e

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

infrastructure/base/monitoring/loki/values.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,15 @@ loki:
5757
max_cache_freshness_per_query: 10m
5858
max_streams_per_user: 10000
5959

60-
schema_config:
60+
# Chart v6.x expects camelCase schemaConfig (validate.yaml checks this key)
61+
schemaConfig:
6162
configs:
62-
- from: 2020-10-24
63+
- from: "2024-04-01"
6364
store: tsdb
6465
object_store: filesystem
6566
schema: v13
6667
index:
67-
prefix: index_
68+
prefix: loki_index_
6869
period: 24h
6970

7071
# Promtail - log collection agent

0 commit comments

Comments
 (0)