homelab-gitops/apps/tekton/tekton-runner-role.yaml
gwg313 145721146e
Some checks are pending
Pipelines as Code CI / homelab-ci CI has Started
add pac
Signed-off-by: gwg313 <gwg313@pm.me>
2026-06-28 23:33:25 -04:00

34 lines
494 B
YAML

apiVersion: rbac.authorization.k8s.io/v1
kind: Role
metadata:
name: tekton-runner
namespace: cicd
rules:
- apiGroups: ["tekton.dev"]
resources:
- pipelineruns
- taskruns
verbs:
- get
- list
- watch
- create
- delete
- apiGroups: [""]
resources:
- pods
- pods/log
verbs:
- get
- list
- watch
- apiGroups: [""]
resources:
- configmaps
verbs:
- get
- list
- watch