Skip to content
Open
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
8 changes: 8 additions & 0 deletions .tekton/cli-main-pull-request.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,8 @@ spec:
value: main-pre-merge-build-args.conf
- name: hermetic
value: "true"
- name: enable-cache-proxy
value: "true"
pipelineSpec:
description: |
This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization.
Expand Down Expand Up @@ -115,6 +117,10 @@ spec:
description: List of platforms to build the container images on
name: build-platforms
type: array
- default: "true"
description: Enable cache proxy
name: enable-cache-proxy
type: string
results:
- description: ""
name: IMAGE_URL
Expand Down Expand Up @@ -240,6 +246,8 @@ spec:
value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT)
- name: IMAGE_APPEND_PLATFORM
value: "true"
- name: ENABLE_CACHE_PROXY
value: $(params.enable-cache-proxy)
runAfter:
- prefetch-dependencies
taskRef:
Expand Down
8 changes: 8 additions & 0 deletions .tekton/cli-main-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ spec:
value: main-build-args.conf
- name: hermetic
value: "true"
- name: enable-cache-proxy
value: "true"
pipelineSpec:
description: |
This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization.
Expand Down Expand Up @@ -117,6 +119,10 @@ spec:
description: List of platforms to build the container images on
name: build-platforms
type: array
- default: "true"
description: Enable cache proxy
name: enable-cache-proxy
type: string
results:
- description: ""
name: IMAGE_URL
Expand Down Expand Up @@ -242,6 +248,8 @@ spec:
value: $(tasks.prefetch-dependencies.results.CACHI2_ARTIFACT)
- name: IMAGE_APPEND_PLATFORM
value: "true"
- name: ENABLE_CACHE_PROXY
value: $(params.enable-cache-proxy)
runAfter:
- prefetch-dependencies
taskRef:
Expand Down
Loading