mirror of
https://github.com/helm/charts.git
synced 2026-08-23 22:37:45 +00:00
[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:
committed by
k8s-ci-robot
parent
bf7c49b74b
commit
12eb363290
@@ -1,5 +1,5 @@
|
||||
name: datadog
|
||||
version: 0.10.5
|
||||
version: 0.10.6
|
||||
description: DataDog Agent
|
||||
keywords:
|
||||
- monitoring
|
||||
|
||||
@@ -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 }}
|
||||
|
||||
@@ -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 }}
|
||||
|
||||
Reference in New Issue
Block a user