File tree Expand file tree Collapse file tree 6 files changed +24
-1
lines changed Expand file tree Collapse file tree 6 files changed +24
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v1
22appVersion : " v0.23.0"
33description : A Helm chart for the Meilisearch search engine
44name : meilisearch
5- version : 0.1.18
5+ version : 0.1.19
66icon : https://res.cloudinary.com/meilisearch/image/upload/v1597822872/Logo/logo_img.svg
77home : https://github.com/meilisearch/meilisearch-kubernetes/charts
88maintainers :
Original file line number Diff line number Diff line change @@ -58,6 +58,8 @@ helm uninstall <your-service-name>
5858| | |
5959| ` image.pullPolicy ` | MeiliSearch image pull policy | ` IfNotPresent `
6060| | |
61+ | ` serviceAccount.annotations ` | Additional annotations for service account | ` {} `
62+ | | |
6163| ` ingress.enabled ` | Enable ingress controller resource | ` false `
6264| | |
6365| ` ingress.annotations ` | Ingress annotations | ` {} `
@@ -72,6 +74,8 @@ helm uninstall <your-service-name>
7274| | |
7375| ` service.type ` | Kubernetes Service type | ` 7700 `
7476| | |
77+ | ` service.annotations ` | Additional annotations for service | ` {} `
78+ | | |
7579| ` persistence.enabled ` | Enable persistence using PVC | ` false `
7680| | |
7781| ` persistence.accessMode ` | PVC Access Mode | ` ReadWriteOnce `
@@ -80,6 +84,8 @@ helm uninstall <your-service-name>
8084| | |
8185| ` persistence.size ` | PVC Storage Request | ` 10Gi `
8286| | |
87+ | ` persistence.annotations ` | Additional annotations for PVC | ` {} `
88+ | | |
8389| ` resources ` | Resources allocation (Requests and Limits) | ` {} `
8490| | |
8591| ` tolerations ` | Tolerations for pod assignment | ` [] `
Original file line number Diff line number Diff line change @@ -11,6 +11,10 @@ metadata:
1111 {{- with .Values.customLabels }}
1212 {{- toYaml . | nindent 4 }}
1313 {{- end }}
14+ {{- with .Values.persistence.annotations }}
15+ annotations :
16+ {{ toYaml . | nindent 4 }}
17+ {{- end }}
1418spec :
1519 accessModes :
1620 - {{ .Values.persistence.accessMode | quote }}
Original file line number Diff line number Diff line change @@ -10,6 +10,10 @@ metadata:
1010 {{- with .Values.customLabels }}
1111 {{- toYaml . | nindent 4 }}
1212 {{- end }}
13+ {{- with .Values.service.annotations }}
14+ annotations :
15+ {{ toYaml . | nindent 4 }}
16+ {{- end }}
1317spec :
1418 type : {{ .Values.service.type }}
1519 ports :
Original file line number Diff line number Diff line change @@ -10,3 +10,7 @@ metadata:
1010 {{- with .Values.customLabels }}
1111 {{- toYaml . | nindent 4 }}
1212 {{- end }}
13+ {{- with .Values.serviceAccount.annotations }}
14+ annotations :
15+ {{ toYaml . | nindent 4 }}
16+ {{- end }}
Original file line number Diff line number Diff line change @@ -30,13 +30,17 @@ environment:
3030 # secret. Otherwise the below value of MEILI_MASTER_KEY will be used instead.
3131 # MEILI_MASTER_KEY:
3232
33+ serviceAccount :
34+ annotations : {}
35+
3336podAnnotations : {}
3437
3538customLabels : {}
3639
3740service :
3841 type : ClusterIP
3942 port : 7700
43+ annotations : {}
4044
4145container :
4246 containerPort : 7700
@@ -65,6 +69,7 @@ persistence:
6569 # #
6670 # storageClass: "-"
6771 size : 10Gi
72+ annotations : {}
6873 volume :
6974 name : data
7075 mountPath : /data.ms
You can’t perform that action at this time.
0 commit comments