Merge changes I2940ea9d,I1390da5e,I9a55718c,I7f0510ca,I4d819ae1
[ric-plt/ric-dep.git] / templates / rolebinding.yaml
1 {{- if .Values.rbac.create }}
2 kind: RoleBinding
3 apiVersion: {{ include "common.capabilities.rbac.apiVersion" . }}
4 metadata:
5   name: {{ include "common.names.fullname" . }}
6   namespace: {{ .Release.Namespace | quote }}
7   labels: {{- include "common.labels.standard" . | nindent 4 }}
8     {{- if .Values.commonLabels }}
9     {{- include "common.tplvalues.render" ( dict "value" .Values.commonLabels "context" $ ) | nindent 4 }}
10     {{- end }}
11   {{- if .Values.commonAnnotations }}
12   annotations: {{- include "common.tplvalues.render" ( dict "value" .Values.commonAnnotations "context" $ ) | nindent 4 }}
13   {{- end }}
14 roleRef:
15   kind: Role
16   name: {{ include "common.names.fullname" . }}
17   apiGroup: rbac.authorization.k8s.io
18 subjects:
19   - kind: ServiceAccount
20     name: {{ include "postgresql.serviceAccountName" . }}
21     namespace: {{ .Release.Namespace | quote }}
22 {{- end }}