From 6817c28e2b082da8bbd7ad27018062091acea269 Mon Sep 17 00:00:00 2001 From: Mike Zupan Date: Fri, 25 Oct 2024 14:07:34 -0700 Subject: [PATCH 1/2] fixing the indexer.podManagementPolicy --- charts/quickwit/templates/indexer-statefulset.yaml | 2 +- charts/quickwit/values.yaml | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/charts/quickwit/templates/indexer-statefulset.yaml b/charts/quickwit/templates/indexer-statefulset.yaml index ba52a91..d3adb76 100644 --- a/charts/quickwit/templates/indexer-statefulset.yaml +++ b/charts/quickwit/templates/indexer-statefulset.yaml @@ -14,7 +14,7 @@ metadata: spec: replicas: {{ .Values.indexer.replicaCount }} serviceName: {{ include "quickwit.fullname" . }}-headless - {{- if .Values.searcher.podManagementPolicy }} + {{- if .Values.indexer.podManagementPolicy }} podManagementPolicy: {{ .Values.indexer.podManagementPolicy }} {{- end }} selector: diff --git a/charts/quickwit/values.yaml b/charts/quickwit/values.yaml index eba14f5..cc6571d 100644 --- a/charts/quickwit/values.yaml +++ b/charts/quickwit/values.yaml @@ -105,6 +105,11 @@ searcher: path: /health/readyz port: rest + # StatefulSet allows you to relax its ordering guarantees + # - OrderedReady + # - Parallel + podManagementPolicy: OrderedReady + lifecycleHooks: {} # preStop: # exec: @@ -186,6 +191,11 @@ indexer: path: /health/readyz port: rest + # StatefulSet allows you to relax its ordering guarantees + # - OrderedReady + # - Parallel + podManagementPolicy: OrderedReady + # Override args for starting container args: [] From dba218aeb6e6ace9317f83c145df878815aac588 Mon Sep 17 00:00:00 2001 From: Mike Zupan Date: Fri, 25 Oct 2024 15:45:02 -0700 Subject: [PATCH 2/2] Update Chart.yaml --- charts/quickwit/Chart.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/charts/quickwit/Chart.yaml b/charts/quickwit/Chart.yaml index 9e2417f..8c270c6 100644 --- a/charts/quickwit/Chart.yaml +++ b/charts/quickwit/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: quickwit description: Sub-second search & analytics engine on cloud storage. type: application -version: 0.7.5 +version: 0.7.6 appVersion: "v0.8.2" keywords: - quickwit