File tree Expand file tree Collapse file tree 4 files changed +37
-1
lines changed Expand file tree Collapse file tree 4 files changed +37
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
22name : quickwit
33description : Sub-second search & analytics engine on cloud storage.
44type : application
5- version : 0.7.17
5+ version : 0.7.18
66appVersion : v0.8.2
77keywords :
88 - quickwit
Original file line number Diff line number Diff line change 1+ {{- if .Values.control_plane.podDisruptionBudget -}}
2+ apiVersion : policy/v1
3+ kind : PodDisruptionBudget
4+ metadata :
5+ name : {{ include "quickwit.fullname" . }}-control-plane
6+ labels :
7+ {{- include "quickwit.labels" . | nindent 4 }}
8+ spec :
9+ selector :
10+ matchLabels :
11+ {{- include "quickwit.control_plane.selectorLabels" . | nindent 6 }}
12+ {{- toYaml .Values.control_plane.podDisruptionBudget | nindent 2 }}
13+ {{- end -}}
Original file line number Diff line number Diff line change 1+ {{- if .Values.metastore.podDisruptionBudget -}}
2+ apiVersion : policy/v1
3+ kind : PodDisruptionBudget
4+ metadata :
5+ name : {{ include "quickwit.fullname" . }}-metastore
6+ labels :
7+ {{- include "quickwit.labels" . | nindent 4 }}
8+ spec :
9+ selector :
10+ matchLabels :
11+ {{- include "quickwit.metastore.selectorLabels" . | nindent 6 }}
12+ {{- toYaml .Values.metastore.podDisruptionBudget | nindent 2 }}
13+ {{- end -}}
Original file line number Diff line number Diff line change @@ -274,6 +274,11 @@ metastore:
274274 # cpu: 100m
275275 # memory: 128Mi
276276
277+ # # Pod distruption budget
278+ podDisruptionBudget : {}
279+ # maxUnavailable: 1
280+ # minAvailable: 2
281+
277282 updateStrategy : {}
278283 # type: RollingUpdate
279284
@@ -342,6 +347,11 @@ control_plane:
342347 # cpu: 100m
343348 # memory: 128Mi
344349
350+ # # Pod distruption budget
351+ podDisruptionBudget : {}
352+ # maxUnavailable: 1
353+ # minAvailable: 2
354+
345355 startupProbe :
346356 httpGet :
347357 path : /health/livez
You can’t perform that action at this time.
0 commit comments