-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add pipelinerun example with timeout
Add an example with a pipelinerun that has a timeout. We have in no-ci because we cannot test for failure. Signed-off-by: Chmouel Boudjnah <[email protected]>
- Loading branch information
1 parent
e908a56
commit f1bfda6
Showing
1 changed file
with
56 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
apiVersion: tekton.dev/v1alpha1 | ||
kind: Task | ||
metadata: | ||
name: task-echo-message | ||
spec: | ||
inputs: | ||
params: | ||
- name: MESSAGE | ||
type: string | ||
default: "Hello World" | ||
steps: | ||
- name: echo | ||
image: ubuntu | ||
command: | ||
- sleep 90s | ||
args: | ||
- "$(inputs.params.MESSAGE)" | ||
--- | ||
|
||
apiVersion: tekton.dev/v1alpha1 | ||
kind: PipelineRun | ||
metadata: | ||
name: pipelinerun-timeout | ||
spec: | ||
# 1 hour and half timeout | ||
timeout: 1h30m | ||
pipelineSpec: | ||
params: | ||
- name: MORNING_GREETINGS | ||
description: "morning greetings, default is Good Morning!" | ||
type: string | ||
default: "Good Morning!" | ||
- name: NIGHT_GREETINGS | ||
description: "Night greetings, default is Good Night!" | ||
type: string | ||
default: "Good Night!" | ||
tasks: | ||
# Task to display morning greetings | ||
- name: echo-good-morning | ||
taskRef: | ||
name: task-echo-message | ||
params: | ||
- name: MESSAGE | ||
value: $(params.MORNING_GREETINGS) | ||
# Task to display night greetings | ||
- name: echo-good-night | ||
taskRef: | ||
name: task-echo-message | ||
params: | ||
- name: MESSAGE | ||
value: $(params.NIGHT_GREETINGS) | ||
params: | ||
- name: MORNING_GREETINGS | ||
value: "Good Morning, Bob!" | ||
- name: NIGHT_GREETINGS | ||
value: "Good Night, Bob!" |