
This updates the tekton charts' default image to the latest version available. Signed-off-by: Tin Lam <tin@irrational.io> Change-Id: I71f76bc0448441d22b49b91ca12d0712bb3cd30d
20 lines
515 B
YAML
20 lines
515 B
YAML
{{- define "clusterrole-core_interceptors" -}}
|
|
---
|
|
apiVersion: rbac.authorization.k8s.io/v1
|
|
kind: ClusterRole
|
|
metadata:
|
|
name: tekton-triggers-core-interceptors
|
|
labels: {{- include "helpers.labels.labels" (dict "Global" $ "PartOf" "tekton-triggers") | nindent 4 }}
|
|
rules:
|
|
- apiGroups:
|
|
- "*"
|
|
resources:
|
|
- secrets
|
|
verbs:
|
|
- get
|
|
- list
|
|
- watch
|
|
...
|
|
{{- end -}}
|
|
{{- include "helpers.template.overlay" ( dict "Global" $ "template_definition" "clusterrole-core_interceptors" ) }}
|