RBAC - 限制一个服务帐户的访问权限

时间:2017-07-06 10:26:24

标签: kubernetes google-kubernetes-engine kubectl google-container-os

我想限制以下服务帐户的权限,按如下方式创建:

kubectl create serviceaccount alice --namespace default

secret=$(kubectl get sa alice -o json | jq -r .secrets[].name)

kubectl get secret $secret -o json | jq -r '.data["ca.crt"]' | base64 -d > ca.crt

user_token=$(kubectl get secret $secret -o json | jq -r '.data["token"]' | base64 -d)

c=`kubectl config current-context`

name=`kubectl config get-contexts $c | awk '{print $3}' | tail -n 1`

endpoint=`kubectl config view -o jsonpath="{.clusters[?(@.name == \"$name\")].cluster.server}"`

kubectl config set-cluster cluster-staging \
  --embed-certs=true \
  --server=$endpoint \
  --certificate-authority=./ca.crt

kubectl config set-credentials alice-staging --token=$user_token

kubectl config set-context alice-staging \
  --cluster=cluster-staging \
  --user=alice-staging \
  --namespace=default

kubectl config get-contexts

#kubectl config use-context alice-staging

这有权查看所有内容: kubectl --context=alice-staging get pods --all-namespaces

我尝试使用以下内容限制它,但仍拥有所有权限:

kind: ClusterRole
apiVersion: rbac.authorization.k8s.io/v1beta1
metadata:
  name: no-access
rules:
- apiGroups: [""]
  resources: [""]
  verbs: [""]
---
kind: RoleBinding
apiVersion: rbac.authorization.k8s.io/v1beta1
metadata:
  name: no-access-role
subjects:
- kind: ServiceAccount
  name: alice
  namespace: default
roleRef:
  kind: ClusterRole
  name: no-access
  apiGroup: rbac.authorization.k8s.io

这个想法是限制对命名空间的访问,以便为用户分发令牌,但是我不明白......我认为它可能适用于继承权限但我不能禁用单个服务帐户。

使用:GKE,container-vm

THX!

1 个答案:

答案 0 :(得分:2)

请注意,服务帐户不适用于用户,而是适用于在pod(https://kubernetes.io/docs/admin/service-accounts-admin/)内运行的进程。

Create user in Kubernetes for kubectl中,您可以找到如何为K8群集创建用户帐户。

此外,我建议您检查群集中是否实际启用了RBAC,这可以解释用户可以执行预期的更多操作。