From a515970247f7f77ed7b7e432a8984595c87bef46 Mon Sep 17 00:00:00 2001 From: rootsongjc Date: Tue, 20 Mar 2018 09:13:21 +0800 Subject: [PATCH] fix typo --- guide/kubectl-user-authentication-authorization.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guide/kubectl-user-authentication-authorization.md b/guide/kubectl-user-authentication-authorization.md index 6b9f1374b..16a3a9311 100644 --- a/guide/kubectl-user-authentication-authorization.md +++ b/guide/kubectl-user-authentication-authorization.md @@ -103,9 +103,9 @@ cp -f ./devuser.kubeconfig /root/.kube/config 关于 kubeconfig 文件的更多信息请参考 [使用 kubeconfig 文件配置跨集群认证](../guide/authenticate-across-clusters-kubeconfig.md)。 -## ClRoleBinding +## RoleBinding -如果我们想限制 devuser 用户的行为,需要使用 RBAC 将该用户的行为限制在某个或某几个 namespace 空间范围内,例如: +如果我们想限制 devuser 用户的行为,需要使用 RBAC创建角色绑定以将该用户的行为限制在某个或某几个 namespace 空间范围内,例如: ```bash kubectl create rolebinding devuser-admin-binding --clusterrole=admin --user=devuser --namespace=dev