22 lines
537 B
YAML
22 lines
537 B
YAML
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: ClusterRole
|
|
metadata:
|
|
name: tekton-dashboard-full
|
|
rules:
|
|
- apiGroups: ["tekton.dev"]
|
|
resources: ["pipelineruns", "taskruns"]
|
|
verbs: ["get", "list", "watch", "create", "delete"]
|
|
---
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: ClusterRoleBinding
|
|
metadata:
|
|
name: tekton-dashboard-full
|
|
subjects:
|
|
- kind: ServiceAccount
|
|
name: tekton-dashboard
|
|
namespace: tekton-pipelines
|
|
roleRef:
|
|
kind: ClusterRole
|
|
name: tekton-dashboard-full
|
|
apiGroup: rbac.authorization.k8s.io
|