Skip to content

Commit 97c5286

Browse files
committed
feat(helm): Add startupProbe to querier
Adds configurable `startupProbe` to querier. Signed-off-by: Andreas Lindhé <[email protected]>
1 parent a3e3a82 commit 97c5286

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 querier [#20081](https://github.com/grafana/loki/pull/20081)
2324

2425
## 6.46.0
2526

production/helm/loki/templates/querier/deployment-querier.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,10 @@ spec:
112112
readinessProbe:
113113
{{- toYaml . | nindent 12 }}
114114
{{- end }}
115+
{{- with .Values.loki.startupProbe }}
116+
startupProbe:
117+
{{- toYaml . | nindent 12 }}
118+
{{- end }}
115119
volumeMounts:
116120
- name: config
117121
mountPath: /etc/loki/config

0 commit comments

Comments
 (0)