Skip to content

Commit d5ac0b8

Browse files
feat(helm): Add health probes to bloom-builder (#18549)
Signed-off-by: Andreas Lindhé <[email protected]> Signed-off-by: Jay Clifford <[email protected]> Co-authored-by: Jay Clifford <[email protected]>
1 parent 62caeed commit d5ac0b8

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

production/helm/loki/CHANGELOG.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,12 @@ Entries should be ordered as follows:
1212
Entries should include a reference to the pull request that introduced the change.
1313

1414
[//]: # (<AUTOMATED_UPDATES_LOCATOR> : do not remove this line. This locator is used by the CI pipeline to automatically create a changelog entry for each new Loki release. Add other chart versions and respective changelog entries bellow this line.)
15-
- [ENHANCEMENT] Add configurable `livenessProbe` and `startupProbe` to bloom-planner. [#18552](https://github.com/grafana/loki/pull/18552)
16-
1715

16+
- [ENHANCEMENT] Add configurable `livenessProbe` and `startupProbe` for loki in bloom-builder. [#18549](https://github.com/grafana/loki/pull/18549)
17+
- [ENHANCEMENT] Add configurable `livenessProbe` and `startupProbe` to bloom-planner. [#18552](https://github.com/grafana/loki/pull/18552)
1818
- [FEATURE] Support separate loki ruler storage configuration [#18510](https://github.com/grafana/loki/pull/18510)
1919

20+
2021
## 6.36.1
2122
- [BUGFIX] Fix missing s3 field in lokiStorageConfig templated value.[#18791](https://github.com/grafana/loki/pull/18791)
2223

production/helm/loki/templates/bloom-builder/deployment-bloom-builder.yaml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,18 @@ spec:
8787
{{- end }}
8888
securityContext:
8989
{{- toYaml .Values.loki.containerSecurityContext | nindent 12 }}
90+
{{- with .Values.loki.livenessProbe }}
91+
livenessProbe:
92+
{{- toYaml . | nindent 12 }}
93+
{{- end }}
9094
{{- with .Values.loki.readinessProbe }}
9195
readinessProbe:
9296
{{- toYaml . | nindent 12 }}
9397
{{- end }}
98+
{{- with .Values.loki.startupProbe }}
99+
startupProbe:
100+
{{- toYaml . | nindent 12 }}
101+
{{- end }}
94102
volumeMounts:
95103
- name: config
96104
mountPath: /etc/loki/config

0 commit comments

Comments
 (0)