diff --git a/apps/rompr/tekton-image-build.yaml b/apps/rompr/tekton-image-build.yaml index b899c7a..c7ab7cc 100644 --- a/apps/rompr/tekton-image-build.yaml +++ b/apps/rompr/tekton-image-build.yaml @@ -42,13 +42,24 @@ spec: - name: builtImage type: image steps: - - name: build-and-push + - name: build-and-push-arm64 image: gcr.io/kaniko-project/executor:arm64 command: - /kaniko/executor args: - --dockerfile=$(params.pathToDockerFile) - - --destination=$(resources.outputs.builtImage.url) + - --destination=$(resources.outputs.builtImage.url):arm64 + - --context=$(params.pathToContext) + - --snapshotMode=redo + - --skip-tls-verify + - name: build-and-push-armhf + image: gcr.io/kaniko-project/executor:arm64 + command: + - /kaniko/executor + args: + - --customPlattform=arm32 + - --dockerfile=$(params.pathToDockerFile) + - --destination=$(resources.outputs.builtImage.url):armhf - --context=$(params.pathToContext) - --snapshotMode=redo - --skip-tls-verify