Skip to content

Commit

Permalink
adding pipeline.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Sheet committed Mar 29, 2024
1 parent 8b91a83 commit e87b76a
Showing 1 changed file with 80 additions and 0 deletions.
80 changes: 80 additions & 0 deletions custom_workbench/pipeline.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
apiVersion: tekton.dev/v1
kind: Pipeline
metadata:
generation: 4
name: new-pipeline
namespace: redhat-ods-applications
spec:
tasks:
- name: git-clone
params:
- name: url
value: 'https://github.com/redhat-na-stp-ai-practice/openshift-ai-pilot-gitops'
- name: revision
value: custom-wb-pipeline
- name: refspec
value: ''
- name: submodules
value: 'true'
- name: depth
value: '1'
- name: sslVerify
value: 'true'
- name: crtFileName
value: ca-bundle.crt
- name: subdirectory
value: ''
- name: sparseCheckoutDirectories
value: ''
- name: deleteExisting
value: 'true'
- name: httpProxy
value: ''
- name: httpsProxy
value: ''
- name: noProxy
value: ''
- name: verbose
value: 'true'
- name: gitInitImage
value: 'registry.redhat.io/openshift-pipelines/pipelines-git-init-rhel8@sha256:66f219b4d54a41b945cb5715ecd1fbb5d25431cf8dad4b06914a4cdc65b298cc'
- name: userHome
value: /home/git
taskRef:
kind: ClusterTask
name: git-clone
workspaces:
- name: output
workspace: output
- name: buildah
params:
- name: IMAGE
value: default-route-openshift-image-registry.apps.cluster-bqft4.dynamic.redhatworkshops.io/redhat-ods-applications/custom-wb
- name: BUILDER_IMAGE
value: 'registry.redhat.io/rhel8/buildah@sha256:b48f410efa0ff8ab0db6ead420a5d8d866d64af846fece5efb185230d7ecf591'
- name: STORAGE_DRIVER
value: vfs
- name: DOCKERFILE
value: ./custom_workbench/Dockerfile
- name: CONTEXT
value: .
- name: TLSVERIFY
value: 'true'
- name: FORMAT
value: oci
- name: BUILD_EXTRA_ARGS
value: ''
- name: PUSH_EXTRA_ARGS
value: ''
- name: SKIP_PUSH
value: 'false'
runAfter:
- git-clone
taskRef:
kind: ClusterTask
name: buildah
workspaces:
- name: source
workspace: output
workspaces:
- name: output

0 comments on commit e87b76a

Please sign in to comment.