blob: 57913f93d51e3f10264905effa6e2c77e1bd415c [file] [log] [blame]
Oleksandr K249d3db2023-12-06 16:35:23 +01001{{- if .Values.serviceAccount.create }}
Mohammed Nasere04accd2023-01-15 20:07:27 -05002apiVersion: v1
3kind: ServiceAccount
4metadata:
5 name: {{ include "pxc-operator.fullname" . }}
Oleksandr K249d3db2023-12-06 16:35:23 +01006 namespace: {{ .Release.Namespace }}
Mohammed Nasere04accd2023-01-15 20:07:27 -05007---
Oleksandr K249d3db2023-12-06 16:35:23 +01008{{- end }}
9{{- if .Values.rbac.create }}
Mohammed Nasere04accd2023-01-15 20:07:27 -050010{{- if or .Values.watchNamespace .Values.watchAllNamespaces }}
11kind: ClusterRoleBinding
12{{- else }}
13kind: RoleBinding
14{{- end }}
15apiVersion: rbac.authorization.k8s.io/v1
16metadata:
17 name: {{ include "pxc-operator.fullname" . }}
18 {{- if .Values.watchNamespace }}
19 namespace: {{ .Values.watchNamespace }}
Oleksandr K249d3db2023-12-06 16:35:23 +010020 {{- else if not .Values.watchAllNamespaces }}
21 namespace: {{ .Release.Namespace }}
Mohammed Nasere04accd2023-01-15 20:07:27 -050022 {{- end }}
23 labels:
24{{ include "pxc-operator.labels" . | indent 4 }}
25subjects:
26- kind: ServiceAccount
27 name: {{ include "pxc-operator.fullname" . }}
28 {{- if or .Values.watchNamespace .Values.watchAllNamespaces }}
29 namespace: {{ .Release.Namespace }}
30 {{- end }}
31roleRef:
32 {{- if or .Values.watchNamespace .Values.watchAllNamespaces }}
33 kind: ClusterRole
34 {{- else }}
35 kind: Role
36 {{- end }}
37 name: {{ include "pxc-operator.fullname" . }}
38 apiGroup: rbac.authorization.k8s.io
Oleksandr K249d3db2023-12-06 16:35:23 +010039{{- end }}