Skip to content

Commit 43e5c10

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

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

2425
## 6.46.0
2526

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

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,6 +120,10 @@ spec:
120120
readinessProbe:
121121
{{- toYaml . | nindent 12 }}
122122
{{- end }}
123+
{{- with .Values.loki.startupProbe }}
124+
startupProbe:
125+
{{- toYaml . | nindent 12 }}
126+
{{- end }}
123127
volumeMounts:
124128
- name: config
125129
mountPath: /etc/loki/config

0 commit comments

Comments
 (0)