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
6 changes: 3 additions & 3 deletions prow-jobs/pingcap-inc/tici/presubmits.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ global_definitions:
skip_if_only_changed: &skip_if_only_changed "(\\.(md|png|jpeg|jpg|gif|svg|pdf|gitignore)|Dockerfile|OWNERS|OWNERS_ALIASES)$"

decoration_config: &decoration_config
timeout: 80m
timeout: 100m
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

The PR title suggests the timeout increase is for the e2e test, but this change increases the timeout for all jobs (pull-verify, pull-it, and pull-e2e). A global timeout increase could mask performance regressions in other jobs. It would be better to apply this change only to the pull-e2e job.

You can achieve this by reverting this line to timeout: 80m and adding a specific decoration_config override to the pull-e2e job like this:

      decoration_config:
        <<: *decoration_config
        timeout: 100m

oauth_token_secret:
name: github-token
key: token
Expand Down Expand Up @@ -104,8 +104,8 @@ presubmits:
make ci-e2e
resources:
requests:
cpu: "6"
cpu: "8"
memory: 24Gi
limits:
cpu: "6"
cpu: "8"
memory: 24Gi