Skip to content

Commit

Permalink
set not timeout for all tasks
Browse files Browse the repository at this point in the history
Signed-off-by: Robert Cerven <rcerven@redhat.com>
  • Loading branch information
rcerven committed Mar 15, 2024
1 parent e444a1f commit bdf3f70
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
9 changes: 9 additions & 0 deletions tekton/pipelines/binary-container.yaml
Expand Up @@ -64,6 +64,7 @@ spec:
value: "$(context.pipelineRun.name)"
- name: user-params
value: '$(params.user-params)'
timeout: "0"

- name: binary-container-prebuild
runAfter:
Expand Down Expand Up @@ -94,6 +95,7 @@ spec:
value: "$(context.pipelineRun.name)"
- name: user-params
value: '$(params.user-params)'
timeout: "0"

- name: binary-container-build-x86-64
runAfter:
Expand Down Expand Up @@ -126,6 +128,7 @@ spec:
value: '$(params.user-params)'
- name: platform
value: x86_64
timeout: "0"

- name: binary-container-build-s390x
runAfter:
Expand Down Expand Up @@ -158,6 +161,7 @@ spec:
value: '$(params.user-params)'
- name: platform
value: s390x
timeout: "0"

- name: binary-container-build-ppc64le
runAfter:
Expand Down Expand Up @@ -190,6 +194,7 @@ spec:
value: '$(params.user-params)'
- name: platform
value: ppc64le
timeout: "0"

- name: binary-container-build-aarch64
runAfter:
Expand Down Expand Up @@ -222,6 +227,7 @@ spec:
value: '$(params.user-params)'
- name: platform
value: aarch64
timeout: "0"

- name: binary-container-postbuild
runAfter:
Expand Down Expand Up @@ -255,6 +261,7 @@ spec:
value: "$(context.pipelineRun.name)"
- name: user-params
value: '$(params.user-params)'
timeout: "0"

- name: binary-container-set-results
runAfter:
Expand All @@ -268,6 +275,7 @@ spec:
params:
- name: osbs-image
value: "$(params.osbs-image)"
timeout: "0"

finally:
- name: binary-container-exit
Expand Down Expand Up @@ -295,3 +303,4 @@ spec:
value: "$(context.pipelineRun.name)"
- name: user-params
value: '$(params.user-params)'
timeout: "0"
3 changes: 3 additions & 0 deletions tekton/pipelines/source-container.yaml
Expand Up @@ -52,6 +52,7 @@ spec:
value: "$(context.pipelineRun.name)"
- name: user-params
value: '$(params.user-params)'
timeout: "0"

- name: source-container-set-results
runAfter:
Expand All @@ -65,6 +66,7 @@ spec:
params:
- name: osbs-image
value: "$(params.osbs-image)"
timeout: "0"

finally:
- name: source-container-exit
Expand Down Expand Up @@ -92,3 +94,4 @@ spec:
value: "$(context.pipelineRun.name)"
- name: user-params
value: '$(params.user-params)'
timeout: "0"

0 comments on commit bdf3f70

Please sign in to comment.