kubesphere-router-kubesphere-system.yaml
时间: 2023-07-10 12:11:18 浏览: 107
kubesphere用户系统
这是一个示例 `kubesphere-router-kubesphere-system` ClusterRoleBinding 的 YAML 文件:
```
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: kubesphere-router-kubesphere-system
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: ClusterRole
name: system:public-info-viewer
subjects:
- kind: ServiceAccount
name: kubesphere-router
namespace: kubesphere-system
```
请注意,此示例绑定将 `kubesphere-router` 服务账户授权为 `system:public-info-viewer` 集群角色。如果您需要不同的权限,请相应地更改 `roleRef` 字段中的角色名称。并且,如果您的服务账户名称或命名空间不同,请相应地更改 `subjects` 字段。
阅读全文