diff --git a/stable/datadog/Chart.yaml b/stable/datadog/Chart.yaml index 688b744008..5122b1b6e4 100755 --- a/stable/datadog/Chart.yaml +++ b/stable/datadog/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: datadog -version: 1.31.5 +version: 1.31.6 appVersion: 6.10.1 description: DataDog Agent keywords: diff --git a/stable/datadog/templates/containers-init.yaml b/stable/datadog/templates/containers-init.yaml index 836059d705..676dce59be 100644 --- a/stable/datadog/templates/containers-init.yaml +++ b/stable/datadog/templates/containers-init.yaml @@ -11,7 +11,7 @@ image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}" command: ["bash", "-c"] args: - - for script in $(find /etc/cont-init.d/ -type f -name '*.sh') ; do bash $script ; done + - for script in $(find /etc/cont-init.d/ -type f -name '*.sh' | sort) ; do bash $script ; done volumeMounts: - name: config mountPath: /etc/datadog-agent