1
0
mirror of https://github.com/kubernetes-sigs/descheduler.git synced 2026-01-26 05:14:13 +01:00

Update ClusterRole To Allow Updating Events

Based on feedback during code review it was recommended to allow
updating events in addition to creating events. Because event proceeding
logic on the client side sometimes updates existing events instead of
creating a new one.
This commit is contained in:
Sean Malloy
2020-02-09 00:17:20 -06:00
parent 853c43737d
commit 6dd91b6a22

View File

@@ -7,7 +7,7 @@ metadata:
rules:
- apiGroups: [""]
resources: ["events"]
verbs: ["create"]
verbs: ["create", "update"]
- apiGroups: [""]
resources: ["nodes"]
verbs: ["get", "watch", "list"]