Skip to content

Commit 0516f04

Browse files
authored
feat(rbac): ability to disable rbac creation (#66)
1 parent c6817d2 commit 0516f04

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

templates/rbac.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{{ if .Values.leases.enabled }}
1+
{{ if .Values.rbac.create }}
22
kind: Role
33
apiVersion: rbac.authorization.k8s.io/v1
44
metadata:

values.yaml

+4
Original file line numberDiff line numberDiff line change
@@ -594,6 +594,10 @@ logback:
594594
## - name: racs-connectors
595595
## level: debug
596596

597+
## @param rbac.create Whether to create RBAC resources
598+
rbac:
599+
create: true
600+
597601
## @param leases.enabled Whether leases should be used when launching multiple replicas of Horizon pods.
598602
leases:
599603
enabled: true

0 commit comments

Comments
 (0)