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

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions docs/sources/setup/install/helm/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -6666,6 +6666,15 @@ See values.yaml
<td><pre lang="json">
{}
</pre>
</td>
</tr>
<tr>
<td>loki.compactor_grpc_client</td>
<td>object</td>
<td>Optional compactor grpc client configuration</td>
<td><pre lang="json">
{}
</pre>
</td>
</tr>
<tr>
Expand Down Expand Up @@ -6811,6 +6820,15 @@ null
<td><pre lang="json">
{}
</pre>
</td>
</tr>
<tr>
<td>loki.ingester_client</td>
<td>object</td>
<td>Optional ingester client configuration</td>
<td><pre lang="json">
{}
</pre>
</td>
</tr>
<tr>
Expand Down
4 changes: 3 additions & 1 deletion production/helm/loki/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@ 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] make loki.storage.bucketNames are optional, if builtin minio is enabled.
- [CHANGE] Add `tpl()` support for `pattern_ingester`, `ingester_client` and `compactor_grpc_client` components. [#16759](https://github.com/grafana/loki/pull/16759)
- [BUGFIX] make loki.storage.bucketNames are optional, if builtin minio is enabled. [#18653](https://github.com/grafana/loki/pull/18653)
- [FEATURE] Added a Helm Chart value to disable the rbac resource creation for the tokengen job. [#15882](https://github.com/grafana/loki/pull/15882)
- [FEATURE] Added support to disable the rbac resource creation for the tokengen job. [#15882](https://github.com/grafana/loki/pull/15882)

Expand All @@ -30,6 +31,7 @@ Entries should include a reference to the pull request that introduced the chang
- [BUGFIX] Add validation for loki.storage.bucketNames [#13781](https://github.com/grafana/loki/pull/13781)
- [BUGFIX] Create missing RBAC for the rules sidecar when RBAC is namespaced [#16776](https://github.com/grafana/loki/pull/16776)
- [BUGFIX] Ensure the scc is actually allowing to use hostPath volumes when the rbac.sccAllowHostDirVolumePlugin is set to true [#17680](https://github.com/grafana/loki/pull/17680)

## 6.33.0

- [FEATURE] Allow passing tenant password hash instead of password. [#17049](https://github.com/grafana/loki/pull/17049)
Expand Down
18 changes: 17 additions & 1 deletion production/helm/loki/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,10 @@ loki:
{{- toYaml . | nindent 2}}
{{- end}}

{{- with .Values.loki.pattern_ingester }}
pattern_ingester:
enabled: {{ .Values.loki.pattern_ingester.enabled }}
{{- tpl (. | toYaml) $ | nindent 4 }}
{{- end }}

memberlist:
{{- if .Values.loki.memberlistConfig }}
Expand All @@ -179,6 +181,11 @@ loki:
{{- tpl (. | toYaml) $ | nindent 4 }}
{{- end }}

{{- with .Values.loki.ingester_client }}
ingester_client:
{{- tpl (. | toYaml) $ | nindent 4 }}
{{- end }}

{{- with .Values.loki.block_builder }}
block_builder:
{{- tpl (. | toYaml) $ | nindent 4 }}
Expand Down Expand Up @@ -304,6 +311,11 @@ loki:
{{- tpl (. | toYaml) $ | nindent 4 }}
{{- end }}

{{- with .Values.loki.compactor_grpc_client }}
compactor_grpc_client:
{{- tpl (. | toYaml) $ | nindent 4 }}
{{- end }}

{{- with .Values.loki.analytics }}
analytics:
{{- tpl (. | toYaml) $ | nindent 4 }}
Expand Down Expand Up @@ -535,6 +547,8 @@ loki:
up_to: 3
# -- Optional compactor configuration
compactor: {}
# -- Optional compactor grpc client configuration
compactor_grpc_client: {}
# -- Optional pattern ingester configuration
pattern_ingester:
enabled: false
Expand All @@ -553,6 +567,8 @@ loki:
querier: {}
# -- Optional ingester configuration
ingester: {}
# -- Optional ingester client configuration
ingester_client: {}
# -- Optional block builder configuration
block_builder: {}
# -- Optional index gateway configuration
Expand Down
Loading