fix(calico): Add missing permissions in RBAC for calico-kube-controllers (#13375)

* fix(calico): Add namespace rbac for calico-kube-controllers

* fix(calico): Add missing RBAC resource for calico-kube-controllers
This commit is contained in:
Toshihiko Kimura
2026-07-18 00:19:30 +09:00
committed by GitHub
parent cbcda6ea8d
commit 2d8f15f95a

View File

@@ -71,6 +71,7 @@ rules:
- blockaffinities - blockaffinities
- ipamblocks - ipamblocks
- ipamhandles - ipamhandles
- ipamconfigs
- tiers - tiers
verbs: verbs:
- get - get
@@ -124,4 +125,12 @@ rules:
- list - list
- update - update
- watch - watch
# Namespaces are watched for LoadBalancer IP allocation with namespace selector support
- apiGroups: [""]
resources:
- namespaces
verbs:
- get
- list
- watch
{% endif %} {% endif %}