Timeouts Workflow
Note
This example is a replication of an Argo Workflow example in Hera.
The upstream example can be found here.
| from hera.workflows import Container, Steps, Workflow
with Workflow(generate_name="timeouts-workflow-", entrypoint="bunch-of-sleeps", active_deadline_seconds=30) as w:
sleep = Container(
name="sleep",
image="debian:9.5-slim",
command=["sleep", "1d"],
)
unschedule = Container(
name="unschedulable",
image="alpine:latest",
node_selector={"beta.kubernetes.io/arch": "no-such-arch"},
)
with Steps(name="bunch-of-sleeps") as s:
with s.parallel():
sleep(name="sleep-one-day", with_items=[1, 2, 3])
unschedule(with_items=[1, 2, 3])
|
| apiVersion: argoproj.io/v1alpha1
kind: Workflow
metadata:
generateName: timeouts-workflow-
spec:
activeDeadlineSeconds: 30
entrypoint: bunch-of-sleeps
templates:
- name: sleep
container:
image: debian:9.5-slim
command:
- sleep
- 1d
- name: unschedulable
container:
image: alpine:latest
nodeSelector:
beta.kubernetes.io/arch: no-such-arch
- name: bunch-of-sleeps
steps:
- - name: sleep-one-day
template: sleep
withItems:
- 1
- 2
- 3
- name: unschedulable
template: unschedulable
withItems:
- 1
- 2
- 3
|