Skip to content

Commit

Permalink
fix(helm): add default wal dir to ruler config (#14920)
Browse files Browse the repository at this point in the history
Signed-off-by: Krzysztof Łuczak <[email protected]>
  • Loading branch information
thevops authored Dec 5, 2024
1 parent a175ef7 commit 1a6751f
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
6 changes: 5 additions & 1 deletion docs/sources/setup/install/helm/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -6247,7 +6247,11 @@ null
<td>object</td>
<td>Check https://grafana.com/docs/loki/latest/configuration/#ruler for more info on configuring ruler</td>
<td><pre lang="json">
{}
{
"wal": {
"dir": "/var/loki/ruler-wal"
}
}
</pre>
</td>
</tr>
Expand Down
1 change: 1 addition & 0 deletions production/helm/loki/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ Entries should include a reference to the pull request that introduced the chang

[//]: # (<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.)

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

## 6.20.0
Expand Down
4 changes: 3 additions & 1 deletion production/helm/loki/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -412,7 +412,9 @@ loki:
prefix: index_
period: 24h
# -- Check https://grafana.com/docs/loki/latest/configuration/#ruler for more info on configuring ruler
rulerConfig: {}
rulerConfig:
wal:
dir: /var/loki/ruler-wal
# -- Structured loki configuration, takes precedence over `loki.config`, `loki.schemaConfig`, `loki.storageConfig`
structuredConfig: {}
# -- Additional query scheduler config
Expand Down

0 comments on commit 1a6751f

Please sign in to comment.