Skip to content

Commit

Permalink
Merge pull request #106 from robnester-rh/add_pipeline_run_timeout_faq
Browse files Browse the repository at this point in the history
Add troubleshooting for PipelineRun timeout
  • Loading branch information
arewm authored Aug 2, 2024
2 parents 17bea26 + 76c8e76 commit 3b81ce1
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions docs/modules/ROOT/pages/troubleshooting/index.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,17 @@ spec:
requests:
storage: 1Gi # increase accordingly
----


== Pipeline Run Times Out

Tasks may fail with an error message mentioning ``PipelineRun <pipelineName> failed to finish within "1h0m0s".``

If you see this error message, it means that the pipeline run has exceeded the default one hour time limit set for PipelineRuns. If you want to increase the time limit, you can do so by setting the `spec.timeout` field in the corresponding PipelineRun YAML file.

[source,yaml]
----
spec:
# ...
timeout: 1h30m0s # increase accordingly
----

0 comments on commit 3b81ce1

Please sign in to comment.