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.

59 lines
1.5 KiB

apiVersion: tekton.dev/v1
kind: PipelineRun
metadata:
generateName: nodejs-hello-world-
spec:
pipelineRef:
name: nodejs-hello-world
params:
- name: git-url
value: https://github.com/nmasse-itix/tekton-pipeline-multiarch.git
- name: git-revision
value: devoxx-france-2025
- name: image-name
value: quay.io/nmasse-redhat/nodejs-hello-world-multiarch
- name: context-dir
value: examples/nodejs/src
- name: containerfile-path
value: examples/nodejs/src/Containerfile
workspaces:
- name: oci-images
volumeClaimTemplate:
spec:
storageClassName: efs-csi
accessModes:
- ReadWriteMany
resources:
requests:
storage: 10Gi
- name: sources
volumeClaimTemplate:
spec:
storageClassName: efs-csi
accessModes:
- ReadWriteMany
resources:
requests:
storage: 1Gi
- name: registry-token
secret:
secretName: quay-authentication
taskRunTemplate:
serviceAccountName: buildbot
taskRunSpecs:
- pipelineTaskName: npm-install-aarch64
podTemplate:
nodeSelector:
beta.kubernetes.io/arch: arm64
tolerations:
- key: "emea-open-demo.redhat.com/arm64-architecture"
operator: "Exists"
effect: "NoSchedule"
- pipelineTaskName: build-aarch64
podTemplate:
nodeSelector:
beta.kubernetes.io/arch: arm64
tolerations:
- key: "emea-open-demo.redhat.com/arm64-architecture"
operator: "Exists"
effect: "NoSchedule"