-
Notifications
You must be signed in to change notification settings - Fork 1.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Do not automatically copy inputs used also as outputs #1118
Milestone
Comments
Ref #1076 |
3 tasks
bobcatfish
changed the title
Breaking change to behavior of resource chaining
Do not automatically copy inputs used also as outputs
Sep 5, 2019
dibyom
added a commit
to dibyom/triggers
that referenced
this issue
Oct 8, 2019
Pipeline 0.7 does not automatically copy input contents to the output folder for resources that are used both as input as well as output. See tektoncd/pipeline#1118. This change updates the release publish task to manually copy over the contents of the input release bucket. Signed-off-by: Dibyo Mukherjee <[email protected]>
tekton-robot
pushed a commit
to tektoncd/triggers
that referenced
this issue
Oct 8, 2019
Pipeline 0.7 does not automatically copy input contents to the output folder for resources that are used both as input as well as output. See tektoncd/pipeline#1118. This change updates the release publish task to manually copy over the contents of the input release bucket. Signed-off-by: Dibyo Mukherjee <[email protected]>
vdemeester
pushed a commit
to openshift/tektoncd-triggers
that referenced
this issue
Nov 7, 2019
Pipeline 0.7 does not automatically copy input contents to the output folder for resources that are used both as input as well as output. See tektoncd/pipeline#1118. This change updates the release publish task to manually copy over the contents of the input release bucket. Signed-off-by: Dibyo Mukherjee <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When the same resource is used as both an input and output to a Task, we copy the resulting information directly from the input path:
/workspace/$resource
rather than copying it from the
/workspace/output/$resource
directory. This causes a few problems:This issue tracks the breaking change that makes this behavior consistent. Outputs are always only copied from the /workspace/outputs directory.
The text was updated successfully, but these errors were encountered: