-
Notifications
You must be signed in to change notification settings - Fork 5
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
Display the reason for a pipeline being timed out or cancelled #23
Labels
Milestone
Comments
@rajatgupta24 is working on this. |
rajatgupta24
added a commit
to rajatgupta24/jx-api
that referenced
this issue
Jul 7, 2022
related to jenkins-x/jx-ui#23 This PR adds a message field in Spec and Steps structs to hold the messages provided by tekton PipelineRun.
rajatgupta24
added a commit
to rajatgupta24/jx-api
that referenced
this issue
Jul 7, 2022
related to jenkins-x/jx-ui#23 This PR adds a message field in Spec and Steps structs to hold the messages provided by tekton PipelineRun.
rajatgupta24
added a commit
to rajatgupta24/jx-pipeline
that referenced
this issue
Jul 7, 2022
- Tekton PipelineRun provides the message & this PR will add that Message field to Spec and Steps in the pipelineActivity. - This PR also adds test for 4 testcases: - timeout - cancelled - success - timedout-success related to jenkins-x/jx-ui#23 Signed-off-by: rajatgupta24 <[email protected]>
rajatgupta24
added a commit
to rajatgupta24/jx-pipeline
that referenced
this issue
Jul 8, 2022
- Tekton PipelineRun provides the message & this PR will add that Message field to Spec and Steps in the pipelineActivity. - This PR also adds test for 4 testcases: - timeout - cancelled - success - timedout-success related to jenkins-x/jx-ui#23 Signed-off-by: rajatgupta24 <[email protected]>
rajatgupta24
added a commit
to rajatgupta24/jx-pipeline
that referenced
this issue
Jul 9, 2022
- Tekton PipelineRun provides the message & this PR will add that Message field to Spec and Steps in the pipelineActivity. - This PR also adds test for 4 testcases: - timeout - cancelled - success - timedout-success related to jenkins-x/jx-ui#23 Signed-off-by: rajatgupta24 <[email protected]>
rajatgupta24
added a commit
to rajatgupta24/jx-pipeline
that referenced
this issue
Jul 13, 2022
- Tekton PipelineRun provides the message & this PR will add that Message field to Spec and Steps in the pipelineActivity. - This PR also adds test for 4 testcases: - timeout - cancelled - success - timedout-success - This also adds the message fields to the expected.yaml. - Instead of using `testhelpers.AssertTextFilesEqual` we're now just comparing the generated pa and expected pa. - Also removes `t.TempDir()` - Adds comments to help understand the steps related to jenkins-x/jx-ui#23 Signed-off-by: rajatgupta24 <[email protected]>
To be shown in the office hours on Aug 2, 2022 |
rajatgupta24
added a commit
to rajatgupta24/jx-pipeline
that referenced
this issue
Sep 14, 2022
- Tekton PipelineRun provides the message & this PR will add that Message field to Spec and Steps in the pipelineActivity. - This PR also adds test for 4 testcases: - timeout - cancelled - success - timedout-success - This also adds the message fields to the expected.yaml. - Instead of using `testhelpers.AssertTextFilesEqual` we're now just comparing the generated pa and expected pa. - Also removes `t.TempDir()` - Adds comments to help understand the steps related to jenkins-x/jx-ui#23 Signed-off-by: rajatgupta24 <[email protected]>
rajatgupta24
added a commit
to rajatgupta24/jx-pipeline
that referenced
this issue
Sep 14, 2022
- Tekton PipelineRun provides the message & this PR will add that Message field to Spec and Steps in the pipelineActivity. - This PR also adds test for 4 testcases: - timeout - cancelled - success - timedout-success - This also adds the message fields to the expected.yaml. - Instead of using `testhelpers.AssertTextFilesEqual` we're now just comparing the generated pa and expected pa. - Also removes `t.TempDir()` - Adds comments to help understand the steps related to jenkins-x/jx-ui#23 Signed-off-by: rajatgupta24 <[email protected]>
rajatgupta24
added a commit
to rajatgupta24/jx-pipeline
that referenced
this issue
Sep 15, 2022
- Tekton PipelineRun provides the message & this PR will add that Message field to Spec and Steps in the pipelineActivity. - This PR also adds test for 4 testcases: - timeout - cancelled - success - timedout-success - This also adds the message fields to the expected.yaml. - Instead of using `testhelpers.AssertTextFilesEqual` we're now just comparing the generated pa and expected pa. - Also removes `t.TempDir()` - Adds comments to help understand the steps - fixes linter.sh related to jenkins-x/jx-ui#23 Signed-off-by: rajatgupta24 <[email protected]>
rajatgupta24
added a commit
to rajatgupta24/jx-pipeline
that referenced
this issue
Sep 16, 2022
- Tekton PipelineRun provides the message & this PR will add that Message field to Spec and Steps in the pipelineActivity. - This PR also adds test for 4 testcases: - timeout - cancelled - success - timedout-success - This also adds the message fields to the expected.yaml. - Instead of using `testhelpers.AssertTextFilesEqual` we're now just comparing the generated pa and expected pa. - Also removes `t.TempDir()` - Adds comments to help understand the steps - fixes linter.sh related to jenkins-x/jx-ui#23 Signed-off-by: rajatgupta24 <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
When a pipeline is cancelled or it has timedout, we update the status of the pipeline to cancelled or timedout.
But we dont show any reason why a job was timedout.
Some of the possible reasons could be:
We should show that information in the pipeline details page (along with the step which has timed out).
This will most likely involve making changes in the jx-api repo (adding a new field to the pipeline activity struct).
The text was updated successfully, but these errors were encountered: