Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: reintroduce the possibility to specify a replicaCount in values.yaml #199

Merged
merged 2 commits into from
Sep 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/meilisearch/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v1
appVersion: "v1.3.0"
description: A Helm chart for the Meilisearch search engine
name: meilisearch
version: 0.2.5
version: 0.2.6
icon: https://res.cloudinary.com/meilisearch/image/upload/v1597822872/Logo/logo_img.svg
home: https://github.com/meilisearch/meilisearch-kubernetes/tree/main/charts/meilisearch
maintainers:
Expand Down
2 changes: 1 addition & 1 deletion charts/meilisearch/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ metadata:
labels:
{{- include "meilisearch.labels" . | nindent 4 }}
spec:
replicas: 1
replicas: {{ .Values.replicaCount | default 1 }}
serviceName: {{ template "meilisearch.fullname" . }}
selector:
matchLabels:
Expand Down
2 changes: 1 addition & 1 deletion manifests/meilisearch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ spec:
app.kubernetes.io/component: search-engine
app.kubernetes.io/part-of: meilisearch
annotations:
checksum/config: 73c3b4e0b1c0b03eddb60d433406ec9e300540938d9f5fdbb9177cbe39dc6bac
checksum/config: 83205b90c0b551bef66ed63fe77a0350e8293bafa30c5eb3b562848e709e6f26
spec:
serviceAccountName: meilisearch
securityContext:
Expand Down