Skip to content

Commit cfde2a2

Browse files
bors[bot]edvinaskrucasalallema
authored
Merge #154
154: Add support for extra containers (sidecars) r=alallema a=edvinaskrucas # Pull Request ## Related issue ... ## What does this PR do? - Adds support for custom sidecar containers. ## PR checklist Please check if your PR fulfills the following requirements: - [x] Does this PR fix an existing issue, or have you listed the changes applied in the PR description (and why they are needed)? - [x] Have you read the contributing guidelines? - [x] Have you made sure that the title is accurate and descriptive of the changes? Thank you so much for contributing to Meilisearch! Co-authored-by: Edvinas Kručas <edv.krucas@gmail.com> Co-authored-by: Amélie <alallema@users.noreply.github.com>
2 parents 16d1c21 + 9821db8 commit cfde2a2

File tree

4 files changed

+8
-1
lines changed

4 files changed

+8
-1
lines changed

charts/meilisearch/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v1
22
appVersion: "v0.30.0"
33
description: A Helm chart for the Meilisearch search engine
44
name: meilisearch
5-
version: 0.1.44
5+
version: 0.1.45
66
icon: https://res.cloudinary.com/meilisearch/image/upload/v1597822872/Logo/logo_img.svg
77
home: https://github.com/meilisearch/meilisearch-kubernetes/charts
88
maintainers:

charts/meilisearch/README.md

+2
Original file line numberDiff line numberDiff line change
@@ -108,6 +108,8 @@ helm uninstall <your-service-name>
108108
| | |
109109
| `volumeMounts` | Additional volumes to mount on pod | `[]`
110110
| | |
111+
| `containers` | Additional containers for pod | `[]`
112+
| | |
111113
| `tolerations` | Tolerations for pod assignment | `[]`
112114
| | |
113115
| `nodeSelector` | Node labels for pod assignment | `{}`

charts/meilisearch/templates/statefulset.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,9 @@ spec:
8181
initialDelaySeconds: {{ .Values.readinessProbe.InitialDelaySeconds }}
8282
resources:
8383
{{ toYaml .Values.resources | indent 12 }}
84+
{{- if .Values.containers }}
85+
{{ toYaml .Values.containers | nindent 8 }}
86+
{{- end }}
8487
{{- with .Values.nodeSelector }}
8588
nodeSelector:
8689
{{ toYaml . | indent 8 }}

charts/meilisearch/values.yaml

+2
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,8 @@ volumes: []
103103

104104
volumeMounts: []
105105

106+
containers: []
107+
106108
nodeSelector: {}
107109

108110
tolerations: []

0 commit comments

Comments
 (0)