Skip to content

Commit b0e39bc

Browse files
committed
feat(helm): Add startupProbe to index-gateway
Adds a configurable `startupProbe` to the index-gateway container in the index-gateway pods. Signed-off-by: Andreas Lindhé <[email protected]>
1 parent a3e3a82 commit b0e39bc

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

production/helm/loki/CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,8 @@ Entries should include a reference to the pull request that introduced the chang
2020
- [ENHANCEMENT] Add support for configuring `volumeAttributesClassName` for `volumeClaimTemplates`. [#19719](https://github.com/grafana/loki/pull/19719)
2121
- [BUGFIX] Don't fail for missing bucket name, if minio is enabled. [#19745](https://github.com/grafana/loki/pull/19745)
2222
- [BUGFIX] Add startupProbe to read pod [#19708](https://github.com/grafana/loki/pull/19708)
23+
- [ENHANCEMENT] Add a configurable `startupProbe` to the index-gateway container in the
24+
index-gateway pods [#20075](https://github.com/grafana/loki/pull/20075)
2325

2426
## 6.46.0
2527

production/helm/loki/templates/index-gateway/statefulset-index-gateway.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,10 @@ spec:
114114
readinessProbe:
115115
{{- toYaml . | nindent 12 }}
116116
{{- end }}
117+
{{- with .Values.loki.startupProbe }}
118+
startupProbe:
119+
{{- toYaml . | nindent 12 }}
120+
{{- end }}
117121
volumeMounts:
118122
- name: config
119123
mountPath: /etc/loki/config

0 commit comments

Comments
 (0)