From 149fd1623290e063a06b833df7a324a9ed97a40f Mon Sep 17 00:00:00 2001 From: Ryota Date: Wed, 21 Aug 2019 15:37:18 +0100 Subject: [PATCH] [stable/falco] Add more role resources to ClusterRole (#16396) * Add more role resources to ClusterRole Added 3 resources - daemonsets - deployments - replicasets These were added in the falco integration example (https://github.com/falcosecurity/falco/blob/bd4c3ffa39da02e8ce1b6a96ab871d254d663fdf/integrations/k8s-using-daemonset/k8s-with-rbac/falco-account.yaml) Signed-off-by: Ryota * Bump the version from 1.0.4 to 1.0.5 Signed-off-by: Ryota * Add entry for v1.0.5 Signed-off-by: Ryota * Update CHANGELOG.md Signed-off-by: Ryota --- stable/falco/CHANGELOG.md | 7 +++++++ stable/falco/Chart.yaml | 2 +- stable/falco/templates/clusterrole.yaml | 3 +++ 3 files changed, 11 insertions(+), 1 deletion(-) diff --git a/stable/falco/CHANGELOG.md b/stable/falco/CHANGELOG.md index 9bab3c89d9..0a797d69ad 100644 --- a/stable/falco/CHANGELOG.md +++ b/stable/falco/CHANGELOG.md @@ -3,6 +3,13 @@ This file documents all notable changes to Sysdig Falco Helm Chart. The release numbering uses [semantic versioning](http://semver.org). +## v1.0.5 + +### Minor Changes + +* Add 3 resources (`daemonsets`, `deployments`, `replicasets`) to the ClusterRole resource list + Ref: [PR#514](https://github.com/falcosecurity/falco/pull/514) from Falco repository + ## v1.0.4 ### Minor Changes diff --git a/stable/falco/Chart.yaml b/stable/falco/Chart.yaml index 03ab9086cd..bad0d4a9f3 100644 --- a/stable/falco/Chart.yaml +++ b/stable/falco/Chart.yaml @@ -1,6 +1,6 @@ apiVersion: v1 name: falco -version: 1.0.4 +version: 1.0.5 appVersion: 0.17.0 description: Falco keywords: diff --git a/stable/falco/templates/clusterrole.yaml b/stable/falco/templates/clusterrole.yaml index df2ede6121..bbb1fe0912 100644 --- a/stable/falco/templates/clusterrole.yaml +++ b/stable/falco/templates/clusterrole.yaml @@ -20,6 +20,9 @@ rules: - services - events - configmaps + - daemonsets + - deployments + - replicasets verbs: - get - list