You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
922 B
39 lines
922 B
apiVersion: tekton.dev/v1
|
|
kind: PipelineRun
|
|
metadata:
|
|
generateName: bootc-
|
|
spec:
|
|
pipelineRef:
|
|
name: bootc
|
|
params:
|
|
- name: git-url
|
|
value: https://github.com/nmasse-itix/bootc-edge-ai.git
|
|
- name: git-revision
|
|
value: main
|
|
- name: image-name
|
|
value: quay.io/nmasse-redhat/bootc-edge-ai
|
|
- name: context-dir
|
|
value: bootc
|
|
- name: containerfile-path
|
|
value: "bootc/Containerfile"
|
|
workspaces:
|
|
- name: caches
|
|
persistentVolumeClaim:
|
|
claimName: bootc-caches
|
|
- name: entitlements
|
|
persistentVolumeClaim:
|
|
claimName: bootc-entitlements
|
|
- name: source-workspace
|
|
volumeClaimTemplate:
|
|
spec:
|
|
storageClassName: efs-csi
|
|
accessModes:
|
|
- ReadWriteMany
|
|
resources:
|
|
requests:
|
|
storage: 1Gi
|
|
- name: registry-token
|
|
secret:
|
|
secretName: registry-authentication
|
|
taskRunTemplate:
|
|
serviceAccountName: buildbot
|
|
|