mirror of
https://github.com/external-secrets/external-secrets.git
synced 2024-12-14 11:57:59 +00:00
Merge pull request #102 from cnmcavoy/cnmcavoy/fix-leader-rbac
Add RBAC for leader election in the helm chart
This commit is contained in:
commit
904124c5ab
2 changed files with 9 additions and 1 deletions
|
@ -2,7 +2,7 @@ apiVersion: v2
|
|||
name: external-secrets
|
||||
description: External secret management for Kubernetes
|
||||
type: application
|
||||
version: "0.1.0"
|
||||
version: "0.1.1"
|
||||
appVersion: "0.1.0"
|
||||
kubeVersion: ">= 1.11.0"
|
||||
keywords:
|
||||
|
|
|
@ -82,6 +82,14 @@ rules:
|
|||
- "configmaps"
|
||||
verbs:
|
||||
- "create"
|
||||
- apiGroups:
|
||||
- "coordination.k8s.io"
|
||||
resources:
|
||||
- "leases"
|
||||
verbs:
|
||||
- "get"
|
||||
- "update"
|
||||
- "patch"
|
||||
---
|
||||
apiVersion: rbac.authorization.k8s.io/v1
|
||||
kind: RoleBinding
|
||||
|
|
Loading…
Reference in a new issue