[datadog] mount auto_conf in the right folder for alpine images (#3575)

* datadog: mount auto_conf in the right folder for alpine images

* update chart version
This commit is contained in:
Xavier Vello
2018-02-06 12:49:12 -08:00
committed by k8s-ci-robot
parent bf7c49b74b
commit 12eb363290
3 changed files with 9 additions and 1 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
name: datadog
version: 0.10.5
version: 0.10.6
description: DataDog Agent
keywords:
- monitoring
+4
View File
@@ -104,7 +104,11 @@ spec:
{{- end }}
{{- if .Values.datadog.autoconf }}
- name: autoconf
{{- if hasSuffix "-alpine" .Values.image.tag }}
mountPath: /opt/datadog-agent/agent/conf.d/auto_conf
{{- else }}
mountPath: /etc/dd-agent/conf.d/auto_conf
{{- end }}
readOnly: true
{{- end }}
{{- if .Values.datadog.volumeMounts }}
+4
View File
@@ -89,7 +89,11 @@ spec:
{{- end }}
{{- if .Values.datadog.autoconf }}
- name: autoconf
{{- if hasSuffix "-alpine" .Values.image.tag }}
mountPath: /opt/datadog-agent/agent/conf.d/auto_conf
{{- else }}
mountPath: /etc/dd-agent/conf.d/auto_conf
{{- end }}
readOnly: true
{{- end }}
{{- if .Values.datadog.volumeMounts }}