Skip to content
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
3 changes: 1 addition & 2 deletions production/helm/loki/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,12 @@ Entries should include a reference to the pull request that introduced the chang

## Unreleased

- [ENHANCEMENT] Add the ability to specify index-gateway container lifecycle. [#19573](https://github.com/grafana/loki/pull/19573)
- [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] Allow configuration of alert rule severities and thresholds

## 6.44.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 @@ -2595,6 +2595,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