Render .Values.extraVolumeMounts inside volumeMounts (#7512)

Signed-off-by: ishabalin <ishabalin@ninthdecimal.com>
This commit is contained in:
Ilya Shabalin
2018-09-03 15:26:07 -07:00
committed by k8s-ci-robot
parent 3149b5e5bd
commit 27a4b4ecd3
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: fluentd-elasticsearch
version: 1.0.1
version: 1.0.2
appVersion: 2.3.1
home: https://www.fluentd.org/
description: A Fluentd Helm chart for Kubernetes with Elasticsearch output
@@ -68,14 +68,14 @@ spec:
readOnly: true
- name: config-volume-{{ template "fluentd-elasticsearch.fullname" . }}
mountPath: /etc/fluent/config.d
{{- if .Values.extraVolumeMounts }}
{{ toYaml .Values.extraVolumeMounts | indent 8 }}
{{- end }}
ports:
{{- range $port := .Values.service.ports }}
- name: {{ $port.name }}
containerPort: {{ $port.port }}
{{- end }}
{{- if .Values.extraVolumeMounts }}
{{ toYaml .Values.extraVolumeMounts | indent 8 }}
{{- end }}
{{- if .Values.livenessProbe.enabled }}
# Liveness probe is aimed to help in situarions where fluentd
# silently hangs for no apparent reasons until manual restart.