diff --git a/examples/pipelines/reachability-project/kustomization.yaml b/examples/pipelines/reachability-project/kustomization.yaml new file mode 100644 index 000000000..17a32a542 --- /dev/null +++ b/examples/pipelines/reachability-project/kustomization.yaml @@ -0,0 +1,13 @@ +--- +apiVersion: kustomize.config.k8s.io/v1beta1 +kind: Kustomization +nameSuffix: -reachability-project +components: + - pkg:helm/dracon-oss-components/base + - pkg:helm/dracon-oss-components/git-clone + - pkg:helm/dracon-oss-components/producer-python-bandit + - pkg:helm/dracon-oss-components/producer-python-pip-safety + - pkg:helm/dracon-oss-components/producer-aggregator + - pkg:helm/dracon-oss-components/enrichers/reachability + - pkg:helm/dracon-oss-components/enricher-codeowners + - pkg:helm/dracon-oss-components/enricher-aggregator diff --git a/examples/pipelines/reachability-project/pipelinerun.yaml b/examples/pipelines/reachability-project/pipelinerun.yaml new file mode 100644 index 000000000..3dd49fbc5 --- /dev/null +++ b/examples/pipelines/reachability-project/pipelinerun.yaml @@ -0,0 +1,24 @@ +--- +apiVersion: tekton.dev/v1beta1 +kind: PipelineRun +metadata: + generateName: reachability-project- + namespace: dracon +spec: + pipelineRef: + name: dracon-reachability-project + params: + - name: git-clone-url + value: https://github.com/fportantier/vulpy.git + - name: enricher-reachability-programming-language + value: python + workspaces: + - name: output + subPath: source-code + volumeClaimTemplate: + spec: + accessModes: + - ReadWriteOnce + resources: + requests: + storage: 1Gi