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.
58 lines
1.4 KiB
58 lines
1.4 KiB
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: bootc-image-name
|
|
value: quay.io/nmasse-redhat/bootc-edge-ai
|
|
- name: app-image-name
|
|
value: quay.io/nmasse-redhat/app-edge-ai
|
|
- name: rclone-model-src
|
|
value: aws:nmasse-bootc-edge-ai/model.onnx
|
|
- name: rclone-model-dest
|
|
value: app/model-s3.onnx
|
|
- name: build-architectures
|
|
value:
|
|
- aarch64
|
|
# - name: pypi-mirror-url
|
|
# value: http://...
|
|
workspaces:
|
|
# - name: caches
|
|
# persistentVolumeClaim:
|
|
# claimName: bootc-caches
|
|
# - name: entitlements
|
|
# persistentVolumeClaim:
|
|
# claimName: bootc-entitlements
|
|
- name: rpms
|
|
persistentVolumeClaim:
|
|
claimName: bootc-rpms
|
|
- name: source-workspace
|
|
volumeClaimTemplate:
|
|
spec:
|
|
storageClassName: efs-csi
|
|
accessModes:
|
|
- ReadWriteMany
|
|
resources:
|
|
requests:
|
|
storage: 1Gi
|
|
- name: registry-token
|
|
secret:
|
|
secretName: registry-authentication
|
|
- name: rclone-config
|
|
secret:
|
|
secretName: rclone-config
|
|
#- name: git-token
|
|
# secret:
|
|
# secretName: github-authentication
|
|
#- name: registries-conf
|
|
# configMap:
|
|
# name: registries-conf
|
|
taskRunTemplate:
|
|
serviceAccountName: buildbot
|
|
|