remove hash

This commit is contained in:
huanqing.shao
2020-02-05 17:39:19 +08:00
parent 6ddc0e6ca3
commit ceb6b8eeab
21 changed files with 53 additions and 25 deletions

View File

@@ -14,6 +14,8 @@ meta:
本文描述了如何为已有 Kubernetes 集群安装认证模块,并可以通过 GitLab、GitHub、LDAP 中的已有账号登录 Kubernetes 集群。
<Course courseId="484058" />
## 前提条件
* 您已经安装了 Kubernetes 集群

View File

@@ -13,6 +13,8 @@ meta:
> 参考文档:[Using RBAC Authorization](https://kubernetes.io/docs/reference/access-authn-authz/rbac/)
<Course courseId="484058" />
Role-based access control (RBAC)基于角色的访问控制是Kubernetes中支持的一种授权方式。使用 `rbac.authorization.k8s.io` API 来驱动授权决策,允许管理员通过该 API 动态配置授权策略。自 Kubernetes 1.8 起RBAC 模式已稳定可用,且通过 `rbac.authorization.k8s.io/v1` API 提供支持。如果要激活 RBAC在启动 API Server 时必须使用参数 `--authorization-mode=RBAC`
> 译者注: