chore(helm): add volumes and volumeMounts chart values (#4714)

This commit is contained in:
Jordan JEAN
2022-02-05 04:47:14 +01:00
committed by GitHub
parent b0852ac107
commit 8d420759f8
3 changed files with 14 additions and 0 deletions

View File

@@ -63,6 +63,10 @@ spec:
key: {{ template "wiki.postgresql.secretKey" . }}
- name: HA_ACTIVE
value: {{ .Values.replicaCount | int | le 2 | quote }}
{{- with .Values.volumeMounts }}
volumeMounts:
{{- toYaml . | nindent 12 }}
{{- end }}
ports:
- name: http
containerPort: 3000
@@ -85,3 +89,7 @@ spec:
tolerations:
{{- toYaml . | nindent 8 }}
{{- end }}
{{- with .Values.volumes }}
volumes:
{{- toYaml . | nindent 8 }}
{{- end }}