Skip to content

Commit 1a6751f

Browse files
authored
fix(helm): add default wal dir to ruler config (#14920)
Signed-off-by: Krzysztof Łuczak <krzysztof.luczak.pro@gmail.com>
1 parent a175ef7 commit 1a6751f

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

‎docs/sources/setup/install/helm/reference.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -6247,7 +6247,11 @@ null
62476247
<td>object</td>
62486248
<td>Check https://grafana.com/docs/loki/latest/configuration/#ruler for more info on configuring ruler</td>
62496249
<td><pre lang="json">
6250-
{}
6250+
{
6251+
"wal": {
6252+
"dir": "/var/loki/ruler-wal"
6253+
}
6254+
}
62516255
</pre>
62526256
</td>
62536257
</tr>

‎production/helm/loki/CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ Entries should include a reference to the pull request that introduced the chang
1313

1414
[//]: # (<AUTOMATED_UPDATES_LOCATOR> : do not remove this line. This locator is used by the CI pipeline to automatically create a changelog entry for each new Loki release. Add other chart versions and respective changelog entries bellow this line.)
1515

16+
- [BUGFIX] Add default wal dir to ruler config ([#14920](https://github.com/grafana/loki/pull/14920))
1617
## 6.22.0
1718

1819
## 6.20.0

‎production/helm/loki/values.yaml

+3-1
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,9 @@ loki:
412412
prefix: index_
413413
period: 24h
414414
# -- Check https://grafana.com/docs/loki/latest/configuration/#ruler for more info on configuring ruler
415-
rulerConfig: {}
415+
rulerConfig:
416+
wal:
417+
dir: /var/loki/ruler-wal
416418
# -- Structured loki configuration, takes precedence over `loki.config`, `loki.schemaConfig`, `loki.storageConfig`
417419
structuredConfig: {}
418420
# -- Additional query scheduler config

0 commit comments

Comments
 (0)