gpt4 book ai didi

kubernetes - 我可以将一个服务帐户连接到 Kubernetes 中的多个命名空间吗?

转载 作者:行者123 更新时间:2023-12-04 03:10:22 31 4
gpt4 key购买 nike

我有几个命名空间 - 假设 NS1NS2 .我在其中创建了服务帐户 - sa1NS1sa2NS2 .我为 sa1 创建了角色和角色绑定(bind)在 NS1 内做事和 sa2NS2 内.
我要的是给sa1 NS2 内的某些访问权限(只说 Pod Reader 角色)。

我想知道这是否可能?

最佳答案

您可以简单地从 RoleBinding 中的另一个命名空间引用 ServiceAccount:

apiVersion: rbac.authorization.k8s.io/v1beta1
kind: Role
metadata:
name: pod-reader
namespace: ns2
rules:
- apiGroups: [""]
resources: ["pods"]
verbs: ["get", "list", "watch"]
---
apiVersion: rbac.authorization.k8s.io/v1
kind: RoleBinding
metadata:
name: pod-reader-from-ns1
namespace: ns2
roleRef:
apiGroup: rbac.authorization.k8s.io
kind: Role
name: pod-reader
subjects:
- kind: ServiceAccount
name: ns1-service-account
namespace: ns1

关于kubernetes - 我可以将一个服务帐户连接到 Kubernetes 中的多个命名空间吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53960516/

31 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com