csst-hstdm-l1.yml 409 Bytes
Newer Older
Tan Siyuan's avatar
Tan Siyuan committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 定义DAG的基本信息
dag_id: "csst-hstdm-l1"
  
# 定义任务
tasks:
  task1:
    image: csst-hstdm-l1-qc0
    tag: latest
    force_pull: true
    bash_command: "python /pipeline/app/run.py {message}"
  task2:
    image: csst-hstdm-l1
    tag: latest
    force_pull: true
    bash_command: "python /pipeline/app/run.py {message}"
    upstream_tasks: ["task1"]  # 定义依赖关系,task2依赖task1