2020-03-18 17:38:40 +00:00
|
|
|
{{- 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 }}
|
2020-08-12 15:25:36 +00:00
|
|
|
rules:
|
|
|
|
- apiGroups: [""]
|
|
|
|
resources: ["nodes"]
|
|
|
|
verbs: ["get"]
|
2020-03-18 17:38:40 +00:00
|
|
|
{{- end }}
|
|
|
|
{{- end -}}
|