Commit 53e2a631 authored by BO ZHANG's avatar BO ZHANG 🏀
Browse files

add csst-msc-l1-sls

parent 309791df
{
"dag_id": "csst-msc-l1-sls",
"dag_run_id": "12345",
"message": {
"obsid": "10109300543790",
"chipid": "01"
}
}
# 定义DAG的基本信息
dag_id: "csst-msc-l1-sls"
# 定义任务
tasks:
task1:
image: csst-msc-l1-qc0
tag: latest
force_pull: true
bash_command: "python /pipeline/app/run.py {message}"
task2:
image: csst-msc-l1-sls
tag: latest
force_pull: true
bash_command: "python /pipeline/app/run.py {message}"
upstream_tasks: ["task1"] # 定义依赖关系,task2依赖task1
task3:
image: csst-msc-l1-sls-extraction-zero
tag: latest
force_pull: true
bash_command: "python /pipeline/app/run.py {message}"
upstream_tasks: ["task2"] # 定义依赖关系,task3依赖task2
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment