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 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: []