-
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
Task input "from" requires inputs to have the same name #1002
Comments
/kind bug |
/kind bug Indeed this is a bit problematic… We may need to be able to specify the name in the from like |
Can't this be transparent for the user? |
@siamaksade I don't really see how, as, if there is two resource of the same type in the |
I see. There are then two related but different issues:
|
@siamaksade |
@vincent-pli the |
@siamaksade How about adding |
is there a reason why the input can't have the same name as the output? I feel like the easiest way is to keep the name the same and update the tasks accordingly. Otherwise @vdemeester suggestion of adding |
Closing this in favor of #1673 |
When providing the output of one task as an input to another task in a
Pipeline
, thesource-copy
step fails if the resource names are not the same. For example:Task 1:
Task 2:
An the pipeline:
Then the pipelinerun fails with
The git sources are copied to
/pvc/build/build-source
in the first task while the second task looks for them in/pvc/build/test-source
.This is particularly problematic when importing tasks that the user has not created themselves.
The text was updated successfully, but these errors were encountered: