
This updates the tekton charts' default image to the latest version available. Signed-off-by: Tin Lam <tin@irrational.io> Change-Id: I71f76bc0448441d22b49b91ca12d0712bb3cd30d
26 lines
853 B
YAML
26 lines
853 B
YAML
{{- define "validatingwebhookconfig-validation" -}}
|
|
---
|
|
apiVersion: admissionregistration.k8s.io/v1
|
|
kind: ValidatingWebhookConfiguration
|
|
metadata:
|
|
name: validation.webhook.triggers.tekton.dev
|
|
labels: {{- include "helpers.labels.labels" (dict "Global" $ "Component" "webhook" "PartOf" "tekton-triggers") | nindent 4 }}
|
|
webhooks:
|
|
- admissionReviewVersions:
|
|
- v1beta1
|
|
- v1
|
|
clientConfig:
|
|
service:
|
|
name: tekton-triggers-webhook
|
|
namespace: {{ $.Release.Namespace }}
|
|
failurePolicy: Fail
|
|
sideEffects: None
|
|
name: validation.webhook.triggers.tekton.dev
|
|
namespaceSelector:
|
|
matchExpressions:
|
|
- key: triggers.tekton.dev/release
|
|
operator: Exists
|
|
...
|
|
{{- end -}}
|
|
{{- include "helpers.template.overlay" ( dict "Global" $ "template_definition" "validatingwebhookconfig-validation" ) }}
|