1 Star 1 Fork 3

刘帅 / glusterfs-k8s

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
rbac.yaml 1.30 KB
一键复制 编辑 原始数据 按行查看 历史
刘帅 提交于 2020-04-28 17:36 . add rbac.yaml.
apiVersion: v1
kind: ServiceAccount
metadata:
name: glfs-provisioner
---
kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: glfs-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", "pods/exec"]
verbs: ["create", "update", "patch"]
- apiGroups: [""]
resources: ["endpoints"]
verbs: ["get", "list", "watch", "create", "update", "patch"]
- apiGroups: [""]
resources: ["pods"]
verbs: ["get", "list", "watch"]
- apiGroups: [""]
resources: ["services"]
verbs: ["get", "list", "watch", "create", "delete", "update", "patch"]
---
kind: ClusterRoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: run-glfs-provisioner
subjects:
- kind: ServiceAccount
name: glfs-provisioner
namespace: default
# update namespace above to your namespace in order to make this work
roleRef:
kind: ClusterRole
name: glfs-provisioner-runner
apiGroup: rbac.authorization.k8s.io
1
https://gitee.com/liu_shuai2573/gfs-k8s.git
git@gitee.com:liu_shuai2573/gfs-k8s.git
liu_shuai2573
gfs-k8s
glusterfs-k8s
master

搜索帮助