Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: Add conditional to include ruler config only when ruler.enabled=…
…true
  • Loading branch information
Tostaza committed Dec 12, 2024
commit b835049832235d75e9fd40f7e0a200346c46c4b7
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 conditional to include ruler config only if `ruler.enabled=true`
- [BUGFIX] Disables the Helm test pod when `test.enabled=false`.

## 6.23.0
Expand Down
2 changes: 2 additions & 0 deletions production/helm/loki/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,9 @@ loki:
{{- toYaml .Values.loki.testSchemaConfig | nindent 2}}
{{- end }}

{{- if .Values.ruler.enabled }}
{{ include "loki.rulerConfig" . }}
{{- end }}

{{- if or .Values.tableManager.retention_deletes_enabled .Values.tableManager.retention_period }}
table_manager:
Expand Down
Loading