You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There are some small functional changes:
* Setting pipelinesascode.tekton.dev/cancel-in-progress: "true" for
pre-merge, and "false" for post-merge.
* Adding the image-digest param to the snyk task and removing the
digest from the image-url param value.
The other changes are not functionally consequential, but they make
it easier to compare the existing yaml to the newly generated yaml.
Useful vimdiff commands to review this change:
vimdiff +'set ft=yaml' .tekton/cli-main-ci-pull-request.yaml <(git show release-v0.6:.tekton/cli-v06-pull-request.yaml|yq '.spec.pipelineSpec={}')
vimdiff +'set ft=yaml' .tekton/cli-main-ci-push.yaml <(git show release-v0.6:.tekton/cli-v06-push.yaml|yq '.spec.pipelineSpec={}')
vimdiff +'set ft=yaml' .tekton/cli-build.yaml <(git show release-v0.6:.tekton/cli-v06-pull-request.yaml|yq '{"spec":.spec.pipelineSpec}')
Ref: https://issues.redhat.com/browse/EC-1135
Copy file name to clipboardexpand all lines: .tekton/cli-build.yaml
+19-11
Original file line number
Diff line number
Diff line change
@@ -3,6 +3,11 @@ kind: Pipeline
3
3
metadata:
4
4
name: cli-build
5
5
spec:
6
+
description: |
7
+
This pipeline is ideal for building container images from a Containerfile while maintaining trust after pipeline customization.
8
+
9
+
_Uses `buildah` to create a container image leveraging [trusted artifacts](https://konflux-ci.dev/architecture/ADR/0036-trusted-artifacts.html). It also optionally creates a source image and runs some build-time tests. Information is shared between tasks using OCI artifacts instead of PVCs. EC will pass the [`trusted_task.trusted`](https://enterprisecontract.dev/docs/ec-policies/release_policy.html#trusted_task__trusted) policy as long as all data used to build the artifact is generated from trusted tasks.
10
+
This pipeline is pushed as a Tekton bundle to [quay.io](https://quay.io/repository/konflux-ci/tekton-catalog/pipeline-docker-build-oci-ta?tab=tags)_
0 commit comments