容器批量计算 BCE-语法说明:模板示例

时间:2023-11-01 16:19:27

模板示例

version: genecontainer_0_1inputs: #设置流程变量  sample: #变量名    default: sample1    type: string    description: 变量描述,支持中文    label: basicworkflow: #设置流程顺序  test-job-a:    tool: busybox:latest    type: G CS .Job    resources:      memory: 4G    commands_iter: # {item} 为GCS内置变量,表示并发任务的 index,需要的时候选用      command: sleep 10; touch /obs/test-job/${sample}.${item}.${1}.txt       vars_iter:        - [0,1]  test-job-b:    tool: busybox:latest    type: GCS.Job    resources:      memory: 4G    commands:      - sleep 10; touch /obs/test-job/${sample}.job-b.txt    depends:      - target: test-job-a #表示依赖另一个步骤,默认依赖类型: wholevolumes: #设置挂载共享存储  genobs:    mount_path: /obs    mount_from:      pvc: '${GCS_DATA_PVC}' #OBS数据桶outputs: #设置最终结果  result-txt: #结果文件    paths_iter:      path:  /obs/test-job/${sample}.${item}.${1}.txt      vars_iter:        - [0,1]
support.huaweicloud.com/usermanual-bce/bce_01_0029.html