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 22
33## master / unreleased
44
5+ * [ CHANGE] Remove startup probes from compactors from default values. It's not recommended in general #542
56* [ CHANGE] Use default value for num_tokens in ingester configuration #544
67
78## 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`
206206| compactor.&ZeroWidthSpace ; serviceMonitor.&ZeroWidthSpace ; metricRelabelings | list | ` [] ` | |
207207| compactor.&ZeroWidthSpace ; serviceMonitor.&ZeroWidthSpace ; podTargetLabels | list | ` [] ` | |
208208| 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 | ` {} ` | |
215210| compactor.&ZeroWidthSpace ; strategy.&ZeroWidthSpace ; type | string | ` "RollingUpdate" ` | |
216211| compactor.&ZeroWidthSpace ; terminationGracePeriodSeconds | int | ` 240 ` | |
217212| compactor.&ZeroWidthSpace ; tolerations | list | ` [] ` | |
Original file line number Diff line number Diff line change @@ -131,8 +131,10 @@ spec:
131131 - name : gossip
132132 containerPort : {{ .Values.config.memberlist.bind_port }}
133133 protocol : TCP
134+ {{- if .Values.compactor.startupProbe }}
134135 startupProbe :
135136 {{- toYaml .Values.compactor.startupProbe | nindent 12 }}
137+ {{- end }}
136138 {{- if .Values.compactor.livenessProbe }}
137139 livenessProbe :
138140 {{- toYaml .Values.compactor.livenessProbe | nindent 12 }}
Original file line number Diff line number Diff line change @@ -1547,14 +1547,7 @@ compactor:
15471547 # whenDeleted: Retain
15481548 # whenScaled: Retain
15491549
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 : {}
15581551 livenessProbe : {}
15591552 readinessProbe :
15601553 httpGet :
You can’t perform that action at this time.
0 commit comments