From b7e54db75839c0f4d2a749262d2af669c95f2a15 Mon Sep 17 00:00:00 2001 From: Ralph Bean Date: Fri, 15 Nov 2024 13:16:52 -0500 Subject: [PATCH] Make EC verify task timeout infinite Before this change, users could use the TIMEOUT param to increase their timeout up from the 5m default, but they would hit a ceiling. If they increased their timeout past 2h, then a tekton default on timeout for the task itself would kick in. --- pipelines/enterprise-contract.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pipelines/enterprise-contract.yaml b/pipelines/enterprise-contract.yaml index c3b235ae87..bb4a32e499 100644 --- a/pipelines/enterprise-contract.yaml +++ b/pipelines/enterprise-contract.yaml @@ -85,6 +85,8 @@ spec: value: "$(tasks.verify.results.TEST_OUTPUT)" tasks: - name: verify + # Timeout 0 is unlimited. Here, rely on pipeline timeout to kill this task eventually. + timeout: 0 params: - name: POLICY_CONFIGURATION value: "$(params.POLICY_CONFIGURATION)"