Skip to content

Commit

Permalink
Update helm chart to support clusterrole binding
Browse files Browse the repository at this point in the history
  • Loading branch information
chainchad committed Feb 13, 2024
1 parent 2380220 commit 3d87c76
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
14 changes: 14 additions & 0 deletions charts/chainlink-cluster/templates/rolebinding.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{{- if .Values.rbac.createRoleBinding }}
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: crib-rolebinding
subjects:
- kind: Group
name: {{ .Values.rbac.roleBindingGroupName }}
apiGroup: rbac.authorization.k8s.io
roleRef:
kind: ClusterRole
name: {{ .Values.rbac.clusterRoleName }}
apiGroup: rbac.authorization.k8s.io
{{- end }}
6 changes: 6 additions & 0 deletions charts/chainlink-cluster/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -298,6 +298,12 @@ affinity:
networkPolicies:
enabled: true

rbac:
createRoleBinding: true
# This assumes that a separate cluster role already exists with this name.
clusterRoleName: "crib-poweruser"
roleBindingGroupName: "eks-sso:crib-poweruser"

# Configure the default network policy.
networkPolicyDefault:
ingress:
Expand Down

0 comments on commit 3d87c76

Please sign in to comment.