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