3 Commits

Author SHA1 Message Date
cfd86e1aa7 also building armhf 2022-02-01 17:42:51 +01:00
1abb9c3d48 also building armhf 2022-02-01 17:19:42 +01:00
225c04e35b also building armhf 2022-02-01 17:19:36 +01:00

View File

@@ -42,8 +42,8 @@ spec:
- name: builtImage
type: image
steps:
- name: build-and-push
image: gcr.io/kaniko-project/executor:arm64
- name: build-and-push-arm64
image: gcr.io/kaniko-project/executor:latest
command:
- /kaniko/executor
args:
@@ -52,6 +52,17 @@ spec:
- --context=$(params.pathToContext)
- --snapshotMode=redo
- --skip-tls-verify
- name: build-and-push-armhf
image: gcr.io/kaniko-project/executor:latest
command:
- /kaniko/executor
args:
- --customPlattform=arm32
- --dockerfile=$(params.pathToDockerFile)
- --destination=$(resources.outputs.builtImage.url):armhf
- --context=$(params.pathToContext)
- --snapshotMode=redo
- --skip-tls-verify
---
apiVersion: tekton.dev/v1beta1
kind: TaskRun