From 4345edd2b05814114fa6f5cf677ce543fe8d2483 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?N=C3=A9stor=20Salceda?= Date: Tue, 11 Sep 2018 21:37:28 +0200 Subject: [PATCH] Make use of shm. It was present in volume but was not mounted. (#7634) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Néstor Salceda --- stable/falco/CHANGELOG.md | 6 ++++++ stable/falco/Chart.yaml | 2 +- stable/falco/templates/daemonset.yaml | 2 ++ 3 files changed, 9 insertions(+), 1 deletion(-) diff --git a/stable/falco/CHANGELOG.md b/stable/falco/CHANGELOG.md index f1abbeae67..16ab00adfc 100644 --- a/stable/falco/CHANGELOG.md +++ b/stable/falco/CHANGELOG.md @@ -3,6 +3,12 @@ This file documents all notable changes to Sysdig Falco Helm Chart. The release numbering uses [semantic versioning](http://semver.org). +## v0.3.1 + +### Minor Changes + +* Mount in memory volume for shm. It was used in volumes but was not mounted. + ## v0.3.0 ### Major Changes diff --git a/stable/falco/Chart.yaml b/stable/falco/Chart.yaml index b0c0a7b0eb..a21f845511 100644 --- a/stable/falco/Chart.yaml +++ b/stable/falco/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: falco -version: 0.3.0 +version: 0.3.1 appVersion: 0.11.1 description: Sysdig Falco keywords: diff --git a/stable/falco/templates/daemonset.yaml b/stable/falco/templates/daemonset.yaml index ca2f133d5d..37dc3f12f9 100644 --- a/stable/falco/templates/daemonset.yaml +++ b/stable/falco/templates/daemonset.yaml @@ -52,6 +52,8 @@ spec: - mountPath: /host/usr name: usr-fs readOnly: true + - mountPath: /dev/shm + name: dshm {{- if (and .Values.ebpf.enabled .Values.ebpf.settings.mountEtcVolume) }} - mountPath: /host/etc name: etc-fs