Skip to content

Commit

Permalink
fix: system-upgrade-controller-drainer: add missing delete permission…
Browse files Browse the repository at this point in the history
… for pods in clusterrole
  • Loading branch information
damdo authored and brandond committed Aug 29, 2024
1 parent c900c39 commit 256e42b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion manifests/clusterrole.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,14 +91,15 @@ rules:
- "pods/eviction"
verbs:
- "create"
# Needed to list pods by Node
# Needed to list/delete pods by Node
- apiGroups:
- ""
resources:
- "pods"
verbs:
- "get"
- "list"
- "delete"
# Needed to cordon Nodes
- apiGroups:
- ""
Expand Down

0 comments on commit 256e42b

Please sign in to comment.