File tree Expand file tree Collapse file tree 4 files changed +9
-2
lines changed Expand file tree Collapse file tree 4 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: loki-distributed
3
3
description : Helm chart for Grafana Loki in microservices mode
4
4
type : application
5
5
appVersion : 2.9.13
6
- version : 0.80.5
6
+ version : 0.80.6
7
7
home : https://grafana.github.io/helm-charts
8
8
sources :
9
9
- https://github.com/grafana/loki
Original file line number Diff line number Diff line change 1
1
# loki-distributed
2
2
3
- ![ Version: 0.80.5 ] ( https://img.shields.io/badge/Version-0.80.5 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: 2.9.13] ( https://img.shields.io/badge/AppVersion-2.9.13-informational?style=flat-square )
3
+ ![ Version: 0.80.6 ] ( https://img.shields.io/badge/Version-0.80.6 -informational?style=flat-square ) ![ Type: application] ( https://img.shields.io/badge/Type-application-informational?style=flat-square ) ![ AppVersion: 2.9.13] ( https://img.shields.io/badge/AppVersion-2.9.13-informational?style=flat-square )
4
4
5
5
Helm chart for Grafana Loki in microservices mode
6
6
@@ -262,6 +262,7 @@ kubectl delete statefulset RELEASE_NAME-loki-distributed-querier -n LOKI_NAMESPA
262
262
| indexGateway.image.tag | string | `nil` | Docker image tag for the index-gateway image. Overrides `loki.image.tag` |
263
263
| indexGateway.initContainers | list | `[]` | Init containers to add to the index-gateway pods |
264
264
| indexGateway.joinMemberlist | bool | `true` | Whether the index gateway should join the memberlist hashring |
265
+ | indexGateway.lifecycle | object | `{}` | Lifecycle for the index-gateway container |
265
266
| indexGateway.maxUnavailable | string | `nil` | Pod Disruption Budget maxUnavailable |
266
267
| indexGateway.minAvailable | string | `nil` | Pod Disruption Budget minAvailable |
267
268
| indexGateway.nodeSelector | object | `{}` | Node selector for index-gateway pods |
Original file line number Diff line number Diff line change @@ -115,6 +115,10 @@ spec:
115
115
{{- end }}
116
116
resources :
117
117
{{- toYaml .Values.indexGateway.resources | nindent 12 }}
118
+ {{- with .Values.indexGateway.lifecycle }}
119
+ lifecycle :
120
+ {{- toYaml . | nindent 12 }}
121
+ {{- end }}
118
122
{{- if .Values.indexGateway.extraContainers }}
119
123
{{- toYaml .Values.indexGateway.extraContainers | nindent 8}}
120
124
{{- end }}
Original file line number Diff line number Diff line change @@ -1676,6 +1676,8 @@ indexGateway:
1676
1676
initContainers : []
1677
1677
# -- Grace period to allow the index-gateway to shutdown before it is killed.
1678
1678
terminationGracePeriodSeconds : 300
1679
+ # -- Lifecycle for the index-gateway container
1680
+ lifecycle : {}
1679
1681
# -- Affinity for index-gateway pods. Passed through `tpl` and, thus, to be configured as string
1680
1682
# @default -- Hard node and soft zone anti-affinity
1681
1683
affinity : |
You can’t perform that action at this time.
0 commit comments