Files
helm/pkg/action/testdata/rbac.txt
Matheus Pimenta bfebbb7c1a Fix vanishing empty lines
Signed-off-by: Matheus Pimenta <matheuscscp@gmail.com>
2026-07-10 16:46:49 +01:00

29 lines
520 B
Plaintext

---
# 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