1
0

Point nfs-client users to Helm and split up yamls

(cherry picked from commit cd7d12292a)
This commit is contained in:
Matthew Wong
2018-09-19 14:43:42 -04:00
committed by kmova
parent 8d0422f82f
commit 2f6670a85b
10 changed files with 138 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: nfs-client-provisioner-runner
rules:
- 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"]