
This patch adds in a tekton zuul job and fixes/adjusts the existing linting and building, which currently does not perform the advertised checks. This is the final patch of the chain of patches in order: 0. https://review.opendev.org/#/c/759865/ : tekton-pipelines 1. https://review.opendev.org/#/c/759598/ : tekton-triggers 2. https://review.opendev.org/#/c/759764/ : tektnon-dashboard Change-Id: Ie7bd9efd42fd13fe8e5e83f290f72ed00ba9dea1 Signed-off-by: Tin Lam <tin@irrational.io>
18 lines
687 B
YAML
18 lines
687 B
YAML
kind: ClusterRole
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
metadata:
|
|
name: tekton-triggers-example-clusterrole
|
|
rules:
|
|
# Permissions for every EventListener deployment to function
|
|
- apiGroups: ["triggers.tekton.dev"]
|
|
resources: ["clustertriggerbindings", "eventlisteners", "triggerbindings", "triggertemplates", "triggers"]
|
|
verbs: ["get", "list", "watch"]
|
|
- apiGroups: [""]
|
|
# secrets are only needed for GitHub/GitLab interceptors
|
|
resources: ["configmaps", "secrets"]
|
|
verbs: ["get", "list", "watch"]
|
|
# Permissions to create resources in associated TriggerTemplates
|
|
- apiGroups: ["tekton.dev"]
|
|
resources: ["pipelineruns", "pipelineresources", "taskruns"]
|
|
verbs: ["create"]
|