generated from container/tmpl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.9 KiB
69 lines
1.9 KiB
2 years ago
|
apiVersion: v1
|
||
|
kind: ServiceAccount
|
||
|
metadata:
|
||
|
name: nfs-client-provisioner
|
||
|
# replace with namespace where provisioner is deployed
|
||
|
namespace: default
|
||
|
---
|
||
|
kind: ClusterRole
|
||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||
|
metadata:
|
||
|
name: nfs-client-provisioner-runner
|
||
|
rules:
|
||
|
- apiGroups: [""]
|
||
|
resources: ["nodes"]
|
||
|
verbs: ["get", "list", "watch"]
|
||
|
- apiGroups: [""]
|
||
|
resources: ["persistentvolumes"]
|
||
|
verbs: ["get", "list", "watch", "create", "delete"]
|
||
|
- apiGroups: [""]
|
||
|
resources: ["persistentvolumeclaims"]
|
||
|
verbs: ["get", "list", "watch", "update"]
|
||
|
- apiGroups: ["storage.k8s.io"]
|
||
|
resources: ["storageclasses"]
|
||
|
verbs: ["get", "list", "watch"]
|
||
|
- apiGroups: [""]
|
||
|
resources: ["events"]
|
||
|
verbs: ["create", "update", "patch"]
|
||
|
---
|
||
|
kind: ClusterRoleBinding
|
||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||
|
metadata:
|
||
|
name: run-nfs-client-provisioner
|
||
|
subjects:
|
||
|
- kind: ServiceAccount
|
||
|
name: nfs-client-provisioner
|
||
|
# replace with namespace where provisioner is deployed
|
||
|
namespace: default
|
||
|
roleRef:
|
||
|
kind: ClusterRole
|
||
|
name: nfs-client-provisioner-runner
|
||
|
apiGroup: rbac.authorization.k8s.io
|
||
|
---
|
||
|
kind: Role
|
||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||
|
metadata:
|
||
|
name: leader-locking-nfs-client-provisioner
|
||
|
# replace with namespace where provisioner is deployed
|
||
|
namespace: default
|
||
|
rules:
|
||
|
- apiGroups: [""]
|
||
|
resources: ["endpoints"]
|
||
|
verbs: ["get", "list", "watch", "create", "update", "patch"]
|
||
|
---
|
||
|
kind: RoleBinding
|
||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||
|
metadata:
|
||
|
name: leader-locking-nfs-client-provisioner
|
||
|
# replace with namespace where provisioner is deployed
|
||
|
namespace: default
|
||
|
subjects:
|
||
|
- kind: ServiceAccount
|
||
|
name: nfs-client-provisioner
|
||
|
# replace with namespace where provisioner is deployed
|
||
|
namespace: default
|
||
|
roleRef:
|
||
|
kind: Role
|
||
|
name: leader-locking-nfs-client-provisioner
|
||
|
apiGroup: rbac.authorization.k8s.io
|