Skip to content
Open
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
10 changes: 10 additions & 0 deletions docs/sources/setup/install/helm/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -5456,6 +5456,7 @@ null
},
"initContainers": [],
"joinMemberlist": true,
"lifecycle": {},
"maxUnavailable": null,
"nodeSelector": {},
"persistence": {
Expand Down Expand Up @@ -5634,6 +5635,15 @@ null
<td><pre lang="json">
true
</pre>
</td>
</tr>
<tr>
<td>indexGateway.lifecycle</td>
<td>object</td>
<td>Lifecycle for the index-gateway container</td>
<td><pre lang="json">
{}
</pre>
</td>
</tr>
<tr>
Expand Down
11 changes: 5 additions & 6 deletions production/helm/loki/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,14 @@ Entries should include a reference to the pull request that introduced the chang

## Unreleased

- [BUGFIX] Wrong context passed to loki.namespace helper from table manager servicemonitor. [#19461](https://github.com/grafana/loki/pull/19461)
- [CHANGE] Remove unused `storageClass` field from compactor persistence configuration. Storage class should be configured per-claim in the `claims` array instead.[#19443](https://github.com/grafana/loki/pull/19443)
- [FEATURE] Make loki-canary readinessProbe configurable via values.yaml [#19328](https://github.com/grafana/loki/pull/19328)
- [FEATURE]: Allow auto-resizing the volume by recreating the StatefulSet. [#19217](https://github.com/grafana/loki/pull/19217)
- [BUGFIX] Add single-binary component to ingress NetworkPolicy [#19229](https://github.com/grafana/loki/pull/19229)
- [BUGFIX] Use strings in stead of integers for ports in CiliumNetworkPolicies [#19252](https://github.com/grafana/loki/pull/19252)
- [ENHANCEMENT] Update default readiness probe values to match operator [#19529](https://github.com/grafana/loki/pull/19529)
- [ENHANCEMENT] Allow configuration of alert rule severities and thresholds
- [ENHANCEMENT] Allow configuration of alert rule severalties and thresholds[#13730](https://github.com/grafana/loki/pull/13730)
- [ENHANCEMENT] Standardize global image registry configuration to match other Grafana charts [#19246](https://github.com/grafana/loki/pull/19246)
- [ENHANCEMENT] Add the ability to specify index-gateway container lifecycle. [#19573](https://github.com/grafana/loki/pull/19573)
- [BUGFIX] Move bucketName validations into the config helpers.[#19051](https://github.com/grafana/loki/pull/19051)
- [BUGFIX] Standardize global image registry to match other Grafana charts [#19246](https://github.com/grafana/loki/pull/19246)

## 6.44.0

Expand Down Expand Up @@ -58,7 +58,6 @@ Before upgrading to this version, make sure that the CustomResourceDefinitions (

- [BUGFIX] Explicitly set registry for k8s-sidecar image [#19233](<https://github.com/grafana/loki/pull/19233>]
- [ENHANCEMENT] Add configurable `livenessProbe` and `startupProbe` for the nginx container in the gateway pods. [#18545](https://github.com/grafana/loki/pull/18545)
- [ENHANCEMENT] Standardize global image registry configuration to match other Grafana charts [#19246](https://github.com/grafana/loki/pull/19246)

## 6.40.0

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,10 @@ spec:
{{- end }}
resources:
{{- toYaml .Values.indexGateway.resources | nindent 12 }}
{{- with .Values.indexGateway.lifecycle }}
lifecycle:
{{- toYaml . | nindent 12 }}
{{- end }}
{{- if .Values.indexGateway.extraContainers }}
{{- toYaml .Values.indexGateway.extraContainers | nindent 8}}
{{- end }}
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 @@ -2598,6 +2598,8 @@ indexGateway:
initContainers: []
# -- Grace period to allow the index-gateway to shutdown before it is killed.
terminationGracePeriodSeconds: 300
# -- Lifecycle for the index-gateway container
lifecycle: {}
# -- Affinity for index-gateway pods.
# @default -- Hard node anti-affinity
# The value will be passed through tpl.
Expand Down
Loading