mirror of
https://github.com/bvanroll/cicdTest.git
synced 2025-08-29 12:02:47 +00:00
94 lines
2.2 KiB
YAML
94 lines
2.2 KiB
YAML
---
|
|
apiVersion: tekton.dev/v1alpha1
|
|
kind: TriggerBinding
|
|
metadata:
|
|
name: github-trigger-binding
|
|
namespace: tekton-pipeline-istio-project-1
|
|
spec:
|
|
params:
|
|
- name: gitrevision
|
|
value: $(body.pull_request.head.sha)
|
|
- name: gitrepositoryurl
|
|
value: $(body.pull_request.head.repo.clone_url)
|
|
- name: prurl
|
|
value: $(body.pull_request.html_url)
|
|
- name: repo
|
|
value: $(body.pull_request.base.repo.full_name)
|
|
- name: source
|
|
value: github
|
|
---
|
|
apiVersion: tekton.dev/v1alpha1
|
|
kind: TriggerTemplate
|
|
metadata:
|
|
name: github-trigger-template
|
|
namespace: tekton-pipeline-istio-project-1
|
|
spec:
|
|
params:
|
|
- name: gitrevision
|
|
description: The git revision
|
|
default: master
|
|
- name: gitrepositoryurl
|
|
description: The git repository url
|
|
resourcetemplates:
|
|
- apiVersion: tekton.dev/v1alpha1
|
|
kind: PipelineRun
|
|
metadata:
|
|
name: application-pipeline-run
|
|
namespace: tekton-pipeline-istio-project-1
|
|
spec:
|
|
serviceAccountName: service-acc
|
|
pipelineRef:
|
|
name: application-pipeline
|
|
resources:
|
|
- name: git-master
|
|
resourceRef:
|
|
name: git-master
|
|
- name: git-experimental
|
|
resourceRef:
|
|
name: git-experimental
|
|
---
|
|
apiVersion: tekton.dev/v1alpha1
|
|
kind: EventListener
|
|
metadata:
|
|
name: github-event-listener
|
|
namespace: tekton-pipeline-istio-project-1
|
|
spec:
|
|
serviceAccountName: service-acc
|
|
triggers:
|
|
- binding:
|
|
name: github-trigger-binding
|
|
template:
|
|
name: github-trigger-template
|
|
---
|
|
apiVersion: networking.istio.io/v1alpha3
|
|
kind: Gateway
|
|
metadata:
|
|
name: expose-event-listener
|
|
namespace: tekton-pipeline-istio-project-1
|
|
spec:
|
|
selector:
|
|
istio: ingressgateway
|
|
servers:
|
|
- port:
|
|
number: 443
|
|
name: http
|
|
protocol: HTTP
|
|
hosts:
|
|
- "*"
|
|
---
|
|
apiVersion: networking.istio.io/v1alpha3
|
|
kind: VirtualService
|
|
metadata:
|
|
name: link-gateway-listener
|
|
namespace: tekton-pipeline-istio-project-1
|
|
spec:
|
|
hosts:
|
|
- "*"
|
|
gateways:
|
|
- expose-event-listener
|
|
http:
|
|
- route:
|
|
- destination:
|
|
port:
|
|
number: 8080
|
|
host: el-github-event-listener |