This PR contains newly rendered Kubernetes manifests automatically generated by the CI workflow. Reviewed-on: #2259 Co-authored-by: gitea-bot <gitea-bot@alexlebens.net> Co-committed-by: gitea-bot <gitea-bot@alexlebens.net>
26 lines
870 B
YAML
26 lines
870 B
YAML
---
|
|
# Source: democratic-csi-synology-iscsi/charts/democratic-csi/templates/node-rbac.yaml
|
|
kind: ClusterRole
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
metadata:
|
|
name: democratic-csi-synology-iscsi-node-cr
|
|
labels:
|
|
app.kubernetes.io/name: democratic-csi
|
|
helm.sh/chart: democratic-csi-0.15.0
|
|
app.kubernetes.io/instance: democratic-csi-synology-iscsi
|
|
app.kubernetes.io/managed-by: Helm
|
|
rules:
|
|
# Allow listing and creating CRDs
|
|
- apiGroups: ['apiextensions.k8s.io']
|
|
resources: ['customresourcedefinitions']
|
|
verbs: ['list', 'create']
|
|
- apiGroups: [""]
|
|
resources: ["nodes"]
|
|
verbs: ["get", "list", "watch", "update"]
|
|
- apiGroups: [""]
|
|
resources: ["persistentvolumes"]
|
|
verbs: ["get", "list", "watch", "update"]
|
|
- apiGroups: ["storage.k8s.io"]
|
|
resources: ["volumeattachments"]
|
|
verbs: ["get", "list", "watch", "update"]
|