mirror of https://github.com/helm/helm
Signed-off-by: Torsten Walter <mail@torstenwalter.de>pull/5881/head
parent
5e2e7b7aca
commit
ec038337a4
@ -0,0 +1,25 @@
|
|||||||
|
---
|
||||||
|
# Source: hello/templates/rbac
|
||||||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
|
kind: Role
|
||||||
|
metadata:
|
||||||
|
name: schedule-agents
|
||||||
|
rules:
|
||||||
|
- apiGroups: [""]
|
||||||
|
resources: ["pods", "pods/exec", "pods/log"]
|
||||||
|
verbs: ["*"]
|
||||||
|
---
|
||||||
|
# Source: hello/templates/rbac
|
||||||
|
apiVersion: rbac.authorization.k8s.io/v1
|
||||||
|
kind: RoleBinding
|
||||||
|
metadata:
|
||||||
|
name: schedule-agents
|
||||||
|
namespace: spaced
|
||||||
|
roleRef:
|
||||||
|
apiGroup: rbac.authorization.k8s.io
|
||||||
|
kind: Role
|
||||||
|
name: schedule-agents
|
||||||
|
subjects:
|
||||||
|
- kind: ServiceAccount
|
||||||
|
name: schedule-agents
|
||||||
|
namespace: spaced
|
Loading…
Reference in new issue