gpt4 book ai didi

kubernetes - 如何为用户设置 RBAC 以在特定命名空间中提交 Argo 工作流?

转载 作者:行者123 更新时间:2023-12-02 12:04:36 24 4
gpt4 key购买 nike

我正在检查 Argo,我想为用户(或多个用户)授予特定的命名空间以使用 Argo 工作流程(并让用户访问诸如工件、输出、访问 secret 等功能)。我已经设置了一个用户并创建了一个命名空间(在 minikube 中测试)。我应该如何为用户、命名空间和 Argo 工作流绑定(bind)角色?

这是我现在拥有的角色和角色绑定(bind) yaml 文件。

kind: Role
apiVersion: rbac.authorization.k8s.io/v1
metadata:
namespace: default
name: pod-reader
rules:
- apiGroups: [“”]
resources: [“pods”]
verbs: [“get”, “watch”, “list”]
kind: RoleBinding
apiVersion: rbac.authorization.k8s.io/v1
metadata:
name: read-pods
namespace: default
subjects:
- kind: User
name: user1
apiGroup: rbac.authorization.k8s.io
roleRef:
kind: Role
name: pod-reader
apiGroup: rbac.authorization.k8s.io

谢谢!

最佳答案

关于kubernetes - 如何为用户设置 RBAC 以在特定命名空间中提交 Argo 工作流?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55719049/

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