27 lines
871 B
YAML
27 lines
871 B
YAML
{{- if .Values.terminatingGateways.enabled }}
|
|
{{- $root := . }}
|
|
{{- range .Values.terminatingGateways.gateways }}
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: RoleBinding
|
|
metadata:
|
|
name: {{ template "consul.fullname" $root }}-{{ .name }}
|
|
namespace: {{ $root.Release.Namespace }}
|
|
labels:
|
|
app: {{ template "consul.name" $root }}
|
|
chart: {{ template "consul.chart" $root }}
|
|
heritage: {{ $root.Release.Service }}
|
|
release: {{ $root.Release.Name }}
|
|
component: terminating-gateway
|
|
terminating-gateway-name: {{ template "consul.fullname" $root }}-{{ .name }}
|
|
roleRef:
|
|
apiGroup: rbac.authorization.k8s.io
|
|
kind: Role
|
|
name: {{ template "consul.fullname" $root }}-{{ .name }}
|
|
subjects:
|
|
- kind: ServiceAccount
|
|
name: {{ template "consul.fullname" $root }}-{{ .name }}
|
|
namespace: {{ $root.Release.Namespace }}
|
|
---
|
|
{{- end }}
|
|
{{- end }}
|