From b6fb9072381de2c6bbad4b0b1bd37865a77d6ba5 Mon Sep 17 00:00:00 2001 From: aimbot31 <25128938+aimbot31@users.noreply.github.com> Date: Thu, 4 Apr 2024 10:42:49 +0200 Subject: [PATCH] add missing permissions to the role used by the SA (#143) --- chart/templates/clusterrole.yaml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/chart/templates/clusterrole.yaml b/chart/templates/clusterrole.yaml index e8a3a6f..f54b56b 100644 --- a/chart/templates/clusterrole.yaml +++ b/chart/templates/clusterrole.yaml @@ -9,4 +9,7 @@ rules: - apiGroups: [ "" ] resources: [ "nodes" ] verbs: [ "get" ] + - apiGroups: [ "coordination.k8s.io" ] + resources: [ "leases" ] + verbs: [ "create", "get", "delete" ] {{- end }}