From c3c38c80d9b8a8a3a2b4819967af9cf1e654ea2e Mon Sep 17 00:00:00 2001 From: Brandon Kimbrough <53441835+bkimbrough88@users.noreply.github.com> Date: Wed, 6 May 2020 13:13:08 -0400 Subject: [PATCH] [stable/datadog] adding init container resource requests to the system probe init container (#21532) * ISSUE-20035 - adding initi container resource requests to the system probe init container Signed-off-by: Brandon Kimbrough * ISSUE-20035 - bumping chart version Signed-off-by: Brandon Kimbrough * bumping version and adding changelog Signed-off-by: Brandon Kimbrough --- stable/datadog/CHANGELOG.md | 4 ++++ stable/datadog/Chart.yaml | 2 +- stable/datadog/templates/system-probe-init.yaml | 2 ++ 3 files changed, 7 insertions(+), 1 deletion(-) diff --git a/stable/datadog/CHANGELOG.md b/stable/datadog/CHANGELOG.md index 0b86015523..a401bed869 100644 --- a/stable/datadog/CHANGELOG.md +++ b/stable/datadog/CHANGELOG.md @@ -1,5 +1,9 @@ # Datadog changelog +## 2.2.12 + +* Adding resources for `system-probe` init container + ## 2.2.11 * Add documentations around secret management in the datadog helm chart. It is to upstream diff --git a/stable/datadog/Chart.yaml b/stable/datadog/Chart.yaml index ae59810493..7ed1e528e6 100644 --- a/stable/datadog/Chart.yaml +++ b/stable/datadog/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: datadog -version: 2.2.11 +version: 2.2.12 appVersion: "7" description: Datadog Agent keywords: diff --git a/stable/datadog/templates/system-probe-init.yaml b/stable/datadog/templates/system-probe-init.yaml index 7a1205b3e9..3507c7192e 100644 --- a/stable/datadog/templates/system-probe-init.yaml +++ b/stable/datadog/templates/system-probe-init.yaml @@ -10,4 +10,6 @@ mountPath: /etc/config - name: seccomp-root mountPath: /host/var/lib/kubelet/seccomp + resources: +{{ toYaml .Values.agents.containers.initContainers.resources | indent 4 }} {{- end -}}