mirror of
https://github.com/bvanroll/cicdTest.git
synced 2025-08-29 12:02:47 +00:00
26 lines
561 B
YAML
26 lines
561 B
YAML
---
|
|
apiVersion: tekton.dev/v1alpha1
|
|
kind: PipelineResource
|
|
metadata:
|
|
name: git-master
|
|
namespace: tekton-pipeline-istio-project-1
|
|
spec:
|
|
type: git
|
|
params:
|
|
- name: revision
|
|
value: master
|
|
- name: url
|
|
value: git://github.com/beppevanrolleghem/cicdTest
|
|
---
|
|
apiVersion: tekton.dev/v1alpha1
|
|
kind: PipelineResource
|
|
metadata:
|
|
name: git-experimental
|
|
namespace: tekton-pipeline-istio-project-1
|
|
spec:
|
|
type: git
|
|
params:
|
|
- name: revision
|
|
value: experimental
|
|
- name: url
|
|
value: git://github.com/beppevanrolleghem/cicdTest |