Skip to content

Commit bf1feca

Browse files
committed
feat(helm): Add startupProbe to query-scheduler
This change adds a configurable `startupProbe` to query-scheduler. Signed-off-by: Andreas Lindhé <[email protected]>
1 parent a3e3a82 commit bf1feca

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

production/helm/loki/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ 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 configurable `startupProbe` to query-scheduler
2324

2425
## 6.46.0
2526

production/helm/loki/templates/query-scheduler/deployment-query-scheduler.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -106,6 +106,10 @@ spec:
106106
readinessProbe:
107107
{{- toYaml . | nindent 12 }}
108108
{{- end }}
109+
{{- with .Values.loki.startupProbe }}
110+
startupProbe:
111+
{{- toYaml . | nindent 12 }}
112+
{{- end }}
109113
volumeMounts:
110114
- name: config
111115
mountPath: /etc/loki/config

0 commit comments

Comments
 (0)