Fix Leader Election RBAC Role

The Leader Election RBAC role is missing the apiGroup
coordination.k8s.io, causing leader election to fail. This change gives
the SIP manager permission to hold leader elections.

Signed-off-by: Drew Walters <andrew.walters@att.com>
Change-Id: Ib166531e2706afeeba7aaaf5d169f317ec1a9b74
This commit is contained in:
Drew Walters 2021-01-15 13:52:14 +00:00
parent fa7d655868
commit f8ae867e14

View File

@ -30,3 +30,15 @@ rules:
- events
verbs:
- create
- apiGroups:
- "coordination.k8s.io"
resources:
- leases
verbs:
- get
- list
- watch
- create
- update
- patch
- delete