Skip to content
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

chore(RELEASE-1143): increase push-disk-images ir timeout to 24h #614

Open
wants to merge 1 commit into
base: development
Choose a base branch
from
Open
Show file tree
Hide file tree
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
3 changes: 3 additions & 0 deletions tasks/push-disk-images/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ The environment to use is pulled from the `cdn.env` key in the data file.
| dataPath | Path to data JSON in the data workspace | No | - |
| pipelineRunUid | The uid of the current pipelineRun. Used as a label value when creating internal requests | No | - |

## Changes in 0.2.2
* Increase the InternalRequest PipelineRun timeout to 24 hours in total

## Changes in 0.2.1
* Increase the InternalRequest PipelineRun timeout to 4 hours in total

Expand Down
8 changes: 4 additions & 4 deletions tasks/push-disk-images/push-disk-images.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ kind: Task
metadata:
name: push-disk-images
labels:
app.kubernetes.io/version: "0.2.1"
app.kubernetes.io/version: "0.2.2"
annotations:
tekton.dev/pipelines.minVersion: "0.12.1"
tekton.dev/tags: release
Expand Down Expand Up @@ -81,10 +81,10 @@ spec:
-p cgwSecret="${cgwSecret}" \
-l ${pipelinerun_label}="$(params.pipelineRunUid)" \
-s true \
-t 14400 \
-t 86400 \
--service-account release-service-account \
--pipeline-timeout 4h0m0s \
--task-timeout 3h50m0s \
--pipeline-timeout 24h0m0s \
--task-timeout 23h50m0s \
--finally-timeout 0h10m0s \
> "$(workspaces.data.path)"/ir-result.txt

Expand Down