Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion pkg/render/kubecontrollers/kube-controllers.go
Original file line number Diff line number Diff line change
Expand Up @@ -435,9 +435,10 @@ func kubeControllersRoleCommonRules(cfg *KubeControllersConfiguration) []rbacv1.
},
{
// IPAM resources are manipulated in response to node and block updates, as well as periodic triggers.
// The node controller watches IPReservations to report how much of each pool they cover.
APIGroups: []string{"projectcalico.org", "crd.projectcalico.org"},
Resources: []string{"ipreservations"},
Verbs: []string{"list"},
Verbs: []string{"list", "watch"},
},
{
APIGroups: []string{"projectcalico.org", "crd.projectcalico.org"},
Expand Down
Loading