From 88acb97b2c30ec363697c3eef5774c9dd80c578a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Guilherme=20Vanz?= Date: Thu, 4 Jul 2024 09:48:35 -0300 Subject: [PATCH] fix: add patch verb to the PDB resource. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Updates the role that give permissions to the controller manipulate the PodDisruptionBudget resource. The role is missing the "patch" verb. Signed-off-by: José Guilherme Vanz --- charts/kubewarden-controller/templates/rbac.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/charts/kubewarden-controller/templates/rbac.yaml b/charts/kubewarden-controller/templates/rbac.yaml index 521c77f9..a3f4be8e 100644 --- a/charts/kubewarden-controller/templates/rbac.yaml +++ b/charts/kubewarden-controller/templates/rbac.yaml @@ -101,6 +101,7 @@ rules: - delete - get - list + - patch - update - watch ---