-
Feature Request
-
Resolution: Done
-
Minor
-
None
Description of problem:
As a user I want to check/read all TaskRun and PipelineRun status.taskRuns[taskName].taskResults on their detail pages without reading the YAML file.
YAML snipped of a TaskRun:
status:
taskSpec:
results:
- description: The precise commit SHA that was fetched by this Task
name: commit
...
taskResults:
- name: commit
value: 39c1285d3163075366bce1100f2c121e18889113
YAML snippet from a PipelineRun:
status:
taskRuns:
nodeinfo11-kbp9di-deploy-cvshf:
pipelineTaskName: deploy
status:
taskResults:
- name: commit
value: 39c1285d3163075366bce1100f2c121e18889113
taskSpec:
results:
- description: The precise commit SHA that was fetched by this Task
name: commit
Prerequisites (if any, like setup, operators/versions):
- Pipeline Operator
Steps to Reproduce
- Create a Pipeline and start it.
- Check the PipelineRun detail page.
Actual results:
The user must check the huge YAML file to find the taskResults. The taskResults depends on the tasks.
But in our predefined s2i Pipelines this contains for example the used commit. Where the params contains only the branch name.
Expected results:
The user can see this additional infos, at least the taskResults on the TaskRun and PipelineRun detail page.
If would be great if the result would merge the name, description and result value of the taskSpec and taskResults array. A table could show all taskResults of the current TaskRun or of all TaskRuns within a PipelineRun.
Reproducibility (Always/Intermittent/Only Once):
Always
Build Details:
4.6
Additional info:
None