File tree Expand file tree Collapse file tree 4 files changed +5
-14
lines changed Expand file tree Collapse file tree 4 files changed +5
-14
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## master / unreleased
4
4
5
+ * [ CHANGE] Remove startup probes from compactors from default values. It's not recommended in general #542
5
6
* [ CHANGE] Use default value for num_tokens in ingester configuration #544
6
7
7
8
## 2.6.0 / 2025-05-07
Original file line number Diff line number Diff line change @@ -206,12 +206,7 @@ Kubernetes: `^1.19.0-0`
206
206
| compactor.&ZeroWidthSpace ; serviceMonitor.&ZeroWidthSpace ; metricRelabelings | list | ` [] ` | |
207
207
| compactor.&ZeroWidthSpace ; serviceMonitor.&ZeroWidthSpace ; podTargetLabels | list | ` [] ` | |
208
208
| compactor.&ZeroWidthSpace ; serviceMonitor.&ZeroWidthSpace ; relabelings | list | ` [] ` | |
209
- | compactor.&ZeroWidthSpace ; startupProbe.&ZeroWidthSpace ; failureThreshold | int | ` 60 ` | |
210
- | compactor.&ZeroWidthSpace ; startupProbe.&ZeroWidthSpace ; httpGet.&ZeroWidthSpace ; path | string | ` "/ready" ` | |
211
- | compactor.&ZeroWidthSpace ; startupProbe.&ZeroWidthSpace ; httpGet.&ZeroWidthSpace ; port | string | ` "http-metrics" ` | |
212
- | compactor.&ZeroWidthSpace ; startupProbe.&ZeroWidthSpace ; httpGet.&ZeroWidthSpace ; scheme | string | ` "HTTP" ` | |
213
- | compactor.&ZeroWidthSpace ; startupProbe.&ZeroWidthSpace ; initialDelaySeconds | int | ` 120 ` | |
214
- | compactor.&ZeroWidthSpace ; startupProbe.&ZeroWidthSpace ; periodSeconds | int | ` 30 ` | |
209
+ | compactor.&ZeroWidthSpace ; startupProbe | object | ` {} ` | |
215
210
| compactor.&ZeroWidthSpace ; strategy.&ZeroWidthSpace ; type | string | ` "RollingUpdate" ` | |
216
211
| compactor.&ZeroWidthSpace ; terminationGracePeriodSeconds | int | ` 240 ` | |
217
212
| compactor.&ZeroWidthSpace ; tolerations | list | ` [] ` | |
Original file line number Diff line number Diff line change @@ -131,8 +131,10 @@ spec:
131
131
- name : gossip
132
132
containerPort : {{ .Values.config.memberlist.bind_port }}
133
133
protocol : TCP
134
+ {{- if .Values.compactor.startupProbe }}
134
135
startupProbe :
135
136
{{- toYaml .Values.compactor.startupProbe | nindent 12 }}
137
+ {{- end }}
136
138
{{- if .Values.compactor.livenessProbe }}
137
139
livenessProbe :
138
140
{{- toYaml .Values.compactor.livenessProbe | nindent 12 }}
Original file line number Diff line number Diff line change @@ -1547,14 +1547,7 @@ compactor:
1547
1547
# whenDeleted: Retain
1548
1548
# whenScaled: Retain
1549
1549
1550
- startupProbe :
1551
- failureThreshold : 60
1552
- initialDelaySeconds : 120
1553
- periodSeconds : 30
1554
- httpGet :
1555
- path : /ready
1556
- port : http-metrics
1557
- scheme : HTTP
1550
+ startupProbe : {}
1558
1551
livenessProbe : {}
1559
1552
readinessProbe :
1560
1553
httpGet :
You can’t perform that action at this time.
0 commit comments