diff --git a/docs/modules/ROOT/pages/troubleshooting/index.adoc b/docs/modules/ROOT/pages/troubleshooting/index.adoc index 03bffffe..7552f895 100644 --- a/docs/modules/ROOT/pages/troubleshooting/index.adoc +++ b/docs/modules/ROOT/pages/troubleshooting/index.adoc @@ -31,3 +31,17 @@ spec: requests: storage: 1Gi # increase accordingly ---- + + +== Pipeline Run Times Out + +Tasks may fail with an error message mentioning ``PipelineRun 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 +---- \ No newline at end of file