-
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
Results "interpolation" in embedded spec (or "results" propagation) #7086
Comments
I also think it's a great idea to propagate results as well -- we descoped this as future work in TEP-0107 which proposed propagating parameters -- https://github.com/tektoncd/community/blob/main/teps/0107-propagating-parameters.md#passing-results |
+1, Execute the above pipelinerun, the two tasks will be executed at the same time, the subsequent implementation of the |
… reference 2. propagate results to embedded task spec Part of work on issue tektoncd#7086 Signed-off-by: chengjoey <zchengjoey@gmail.com>
… reference 2. propagate results to embedded task spec Part of work on issue tektoncd#7086 Signed-off-by: chengjoey <zchengjoey@gmail.com>
@chengjoey I don't think the user should have to specify |
in pr, i added task step |
sounds good, thank you @chengjoey |
… reference 2. propagate results to embedded task spec Part of work on issue tektoncd#7086 Signed-off-by: chengjoey <zchengjoey@gmail.com>
… reference 2. propagate results to embedded task spec Part of work on issue tektoncd#7086 Signed-off-by: chengjoey <zchengjoey@gmail.com>
… reference 2. propagate results to embedded task spec Part of work on issue tektoncd#7086 Signed-off-by: chengjoey <zchengjoey@gmail.com>
… reference 2. propagate results to embedded task spec Part of work on issue tektoncd#7086 Signed-off-by: chengjoey <zchengjoey@gmail.com>
… reference 2. propagate results to embedded task spec Part of work on issue tektoncd#7086 Signed-off-by: chengjoey <zchengjoey@gmail.com>
… reference 2. propagate results to embedded task spec Part of work on issue tektoncd#7086 Signed-off-by: chengjoey <zchengjoey@gmail.com>
… reference 2. propagate results to embedded task spec Part of work on issue tektoncd#7086 Signed-off-by: chengjoey <zchengjoey@gmail.com>
… reference 2. propagate results to embedded task spec Part of work on issue tektoncd#7086 Signed-off-by: chengjoey <zchengjoey@gmail.com>
… reference 2. propagate results to embedded task spec Part of work on issue tektoncd#7086 Signed-off-by: chengjoey <zchengjoey@gmail.com>
… reference 2. propagate results to embedded task spec Part of work on issue tektoncd#7086 Signed-off-by: chengjoey <zchengjoey@gmail.com>
… reference 2. propagate results to embedded task spec Part of work on issue tektoncd#7086 Signed-off-by: chengjoey <zchengjoey@gmail.com>
… reference 2. propagate results to embedded task spec Part of work on issue tektoncd#7086 Signed-off-by: chengjoey <zchengjoey@gmail.com>
… reference 2. propagate results to embedded task spec Part of work on issue tektoncd#7086 Signed-off-by: chengjoey <zchengjoey@gmail.com>
… reference 2. propagate results to embedded task spec Part of work on issue #7086 Signed-off-by: chengjoey <zchengjoey@gmail.com>
This is fixed by #7100. |
Expected Behavior
A "somewhat" consistent behavior when using results and embedded spec. Naively, I would assume the following would work (but it does not).
Actual Behavior
The above example fails with
/bin/sh: tasks.add-uid.results.uid: not found
. My guess is that, we do have params and workspace propagation on embedded spec, but we do not have them for results.Steps to Reproduce the Problem
Additional Info
As said above, this might be more a feature request than a bug as, I feel this is mainly because we do not "propagate"
results
to embedded spec. This does feel inconsistent as we do it for other fields (likeparams
andworkspaces
).cc @jerop @lbernick
The text was updated successfully, but these errors were encountered: