Skip to content

Commit

Permalink
Merge pull request #109 from mzupan/main
Browse files Browse the repository at this point in the history
fixing the indexer.podManagementPolicy
  • Loading branch information
fmassot authored Oct 26, 2024
2 parents f19cb47 + dba218a commit a6abeb9
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion charts/quickwit/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion charts/quickwit/templates/indexer-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
10 changes: 10 additions & 0 deletions charts/quickwit/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down Expand Up @@ -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: []

Expand Down

0 comments on commit a6abeb9

Please sign in to comment.