mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
20 lines
622 B
YAML
20 lines
622 B
YAML
|
{{- if .Values.rbac.create -}}
|
||
|
{{- if .Values.topology.enabled }}
|
||
|
kind: ClusterRole
|
||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||
|
metadata:
|
||
|
name: {{ include "ceph-csi-cephfs.nodeplugin.fullname" . }}
|
||
|
labels:
|
||
|
app: {{ include "ceph-csi-cephfs.name" . }}
|
||
|
chart: {{ include "ceph-csi-cephfs.chart" . }}
|
||
|
component: {{ .Values.nodeplugin.name }}
|
||
|
release: {{ .Release.Name }}
|
||
|
heritage: {{ .Release.Service }}
|
||
|
aggregationRule:
|
||
|
clusterRoleSelectors:
|
||
|
- matchLabels:
|
||
|
rbac.cephfs.csi.ceph.com/aggregate-to-{{ include "ceph-csi-cephfs.nodeplugin.fullname" . }}: "true"
|
||
|
rules: []
|
||
|
{{- end }}
|
||
|
{{- end -}}
|