Skip to content
Merged
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
6 changes: 5 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,10 +176,14 @@ jobs:
"deployment/${K8S_DEPLOYMENT}" \
"${K8S_CONTAINER}=${IMAGE}" \
-n "${K8S_NAMESPACE}"
# 2026-05-30: bumped 180s → 300s after a real api rollout took
# ~240s (image pull + readiness on a fresh node) and the workflow
# timed out even though the pod came up healthy. Same change in
# api + provisioner deploy.yml. False-failure forces a manual rerun.
kubectl rollout status \
"deployment/${K8S_DEPLOYMENT}" \
-n "${K8S_NAMESPACE}" \
--timeout=180s
--timeout=300s

- name: Verify rolled-out image tag matches built version
# The worker has no public ingress, so we can't curl an external
Expand Down
Loading