diff --git a/integrations/k8s-using-daemonset/k8s-with-rbac/falco-account.yaml b/integrations/k8s-using-daemonset/k8s-with-rbac/falco-account.yaml index a079f117..374ec3e4 100644 --- a/integrations/k8s-using-daemonset/k8s-with-rbac/falco-account.yaml +++ b/integrations/k8s-using-daemonset/k8s-with-rbac/falco-account.yaml @@ -17,6 +17,9 @@ rules: - apiGroups: ["extensions",""] resources: ["nodes","namespaces","pods","replicationcontrollers","replicasets","services","daemonsets","deployments","events","configmaps"] verbs: ["get","list","watch"] + - apiGroups: ["apps"] + resources: ["daemonsets","deployments","replicasets","statefulsets"] + verbs: ["get","list","watch"] - nonResourceURLs: ["/healthz", "/healthz/*"] verbs: ["get"] --- diff --git a/integrations/k8s-using-deployment/k8s-with-rbac/falco-k8s-audit-account.yaml b/integrations/k8s-using-deployment/k8s-with-rbac/falco-k8s-audit-account.yaml index a0989932..85191373 100644 --- a/integrations/k8s-using-deployment/k8s-with-rbac/falco-k8s-audit-account.yaml +++ b/integrations/k8s-using-deployment/k8s-with-rbac/falco-k8s-audit-account.yaml @@ -17,6 +17,9 @@ rules: - apiGroups: ["extensions",""] resources: ["nodes","namespaces","pods","replicationcontrollers","replicasets","services","daemonsets","deployments","events","configmaps"] verbs: ["get","list","watch"] + - apiGroups: ["apps"] + resources: ["daemonsets","deployments","replicasets","statefulsets"] + verbs: ["get","list","watch"] - nonResourceURLs: ["/healthz", "/healthz/*"] verbs: ["get"] ---