Skip to content

Commit

Permalink
Make replicaCount optional (#124)
Browse files Browse the repository at this point in the history
  • Loading branch information
katlim-br authored Jan 30, 2025
1 parent 27553a1 commit 965cce7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
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.11
version: 0.7.12
appVersion: "v0.8.2"
keywords:
- quickwit
Expand Down
2 changes: 2 additions & 0 deletions charts/quickwit/templates/indexer-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ metadata:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
{{- if .Values.indexer.replicaCount }}
replicas: {{ .Values.indexer.replicaCount }}
{{- end }}
serviceName: {{ include "quickwit.fullname" . }}-headless
{{- if .Values.indexer.podManagementPolicy }}
podManagementPolicy: {{ .Values.indexer.podManagementPolicy }}
Expand Down
2 changes: 2 additions & 0 deletions charts/quickwit/templates/searcher-statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ metadata:
{{- toYaml . | nindent 4 }}
{{- end }}
spec:
{{- if .Values.searcher.replicaCount }}
replicas: {{ .Values.searcher.replicaCount }}
{{- end }}
serviceName: {{ include "quickwit.fullname" . }}-headless
{{- if .Values.searcher.podManagementPolicy }}
podManagementPolicy: {{ .Values.searcher.podManagementPolicy }}
Expand Down

0 comments on commit 965cce7

Please sign in to comment.