blob: 621989130521a0647e2cf6e0e98d61dc73a45f5d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{{- if .Values.rbac.create }}
{{- if .Values.gateway.enabled }}
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: gloo-role-binding-gateway-{{ .Release.Namespace }}
labels:
app: gloo
gloo: rbac
subjects:
- kind: ServiceAccount
name: default
namespace: {{ .Release.Namespace }}
roleRef:
kind: ClusterRole
name: gloo-role-gateway
apiGroup: rbac.authorization.k8s.io
{{- end -}}
{{- end -}}
|