Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions .tekton/doc-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,22 @@ metadata:
)
)
spec:
# `tasks` is the budget for all tasks together, not per task — a run whose
# steps add up past it is cancelled wherever it happens to be, and everything
# already done is thrown away because `upload-translations` runs last.
#
# Sized from immutable-infra-docs on 2026-09-03/04, where 6h cancelled two
# runs during `auto-translate-ru` after Chinese had already succeeded:
# auto-translate-zh 2h06m–2h25m for one attempt, 3h25m–3h34m with retries
# auto-translate-ru still running at 2h25m and 2h30m when the budget ran out
# so the realistic total is over 8h once either language needs a retry.
#
# This is the coarse bound. What stops a genuinely stuck step is the per-task
# `timeout` in the pipeline body (ops/edge-devops-task), and with retries: 2
# on each translate task no aggregate can cover the true worst case.
timeouts:
pipeline: 8h
tasks: 6h
pipeline: 12h
tasks: 10h

params:
- name: doc-base
Expand Down