56 lines
1.2 KiB
Plaintext
56 lines
1.2 KiB
Plaintext
|
---
|
||
|
kind: ServiceAccount
|
||
|
apiVersion: v1
|
||
|
metadata:
|
||
|
name: vsphere-csi-node
|
||
|
namespace: kube-system
|
||
|
---
|
||
|
kind: ClusterRole
|
||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||
|
metadata:
|
||
|
name: vsphere-csi-node-cluster-role
|
||
|
rules:
|
||
|
- apiGroups: ["cns.vmware.com"]
|
||
|
resources: ["csinodetopologies"]
|
||
|
verbs: ["create", "watch"]
|
||
|
- apiGroups: [""]
|
||
|
resources: ["nodes"]
|
||
|
verbs: ["get"]
|
||
|
---
|
||
|
kind: ClusterRoleBinding
|
||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||
|
metadata:
|
||
|
name: vsphere-csi-node-cluster-role-binding
|
||
|
subjects:
|
||
|
- kind: ServiceAccount
|
||
|
name: vsphere-csi-node
|
||
|
namespace: kube-system
|
||
|
roleRef:
|
||
|
kind: ClusterRole
|
||
|
name: vsphere-csi-node-cluster-role
|
||
|
apiGroup: rbac.authorization.k8s.io
|
||
|
---
|
||
|
kind: Role
|
||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||
|
metadata:
|
||
|
name: vsphere-csi-node-role
|
||
|
namespace: kube-system
|
||
|
rules:
|
||
|
- apiGroups: [""]
|
||
|
resources: ["configmaps"]
|
||
|
verbs: ["get", "list", "watch"]
|
||
|
---
|
||
|
kind: RoleBinding
|
||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||
|
metadata:
|
||
|
name: vsphere-csi-node-binding
|
||
|
namespace: kube-system
|
||
|
subjects:
|
||
|
- kind: ServiceAccount
|
||
|
name: vsphere-csi-node
|
||
|
namespace: kube-system
|
||
|
roleRef:
|
||
|
kind: Role
|
||
|
name: vsphere-csi-node-role
|
||
|
apiGroup: rbac.authorization.k8s.io
|