Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions pipelines/bundle-build-oci-ta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,10 @@ spec:
type: string
default: .
description: Target directories to scan with SAST tools. Multiple values should be separated with commas.
- name: ALLOW_CROSS_PLATFORM_IMAGES
type: string
default: "false"
description: Allows to use parent images that don't match the build host architecture. This option must be used with caution as it may create incompatible images.
results:
- description: ""
name: IMAGE_URL
Expand Down Expand Up @@ -277,6 +281,8 @@ spec:
value: $(tasks.init.results.http-proxy)
- name: NO_PROXY
value: $(tasks.init.results.no-proxy)
- name: ALLOW_CROSS_PLATFORM_IMAGES
value: $(params.ALLOW_CROSS_PLATFORM_IMAGES)
runAfter:
- prefetch-dependencies
- generate-labels
Expand Down
6 changes: 6 additions & 0 deletions pipelines/docker-build-oci-ta.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,10 @@ spec:
type: string
default: .
description: Target directories to scan with SAST tools. Multiple values should be separated with commas.
- name: ALLOW_CROSS_PLATFORM_IMAGES
type: string
default: "false"
description: Allows to use parent images that don't match the build host architecture. This option must be used with caution as it may create incompatible images.
results:
- description: ""
name: IMAGE_URL
Expand Down Expand Up @@ -258,6 +262,8 @@ spec:
- "short-commit=$(tasks.clone-repository.results.short-commit)"
- name: BUILDAH_FORMAT
value: $(params.buildah-format)
- name: ALLOW_CROSS_PLATFORM_IMAGES
value: $(params.ALLOW_CROSS_PLATFORM_IMAGES)
runAfter:
- prefetch-dependencies
- generate-labels
Expand Down