bdy pipeline
$bdy pipeline|pip [options] [command]
Commands to interact with the pipeline service
Examples
Run pipeline with high priority and upload everything from scratchbdy pip run start pipeline-identifier --priority HIGH -f$
Run pipeline without cache and wait for execution to completebdy pip run start pipeline-identifier --wait -c$
Run pipeline and pass custom variables to executionbdy pip run start pipeline-identifier -v key:val -v a:b$
Run pipeline and pass custom variables from filebdy pip run start pipeline-identifier --vf path/to/env/file$
Run pipeline and output only final jsonlbdy pip run start pipeline-identifier --no-follow --format jsonl$
Pipeline run statusbdy pip run status pipeline-identifier run-id$
Pipeline run status, get only final jsonlbdy pip run status pipeline-identifier run-id --no-follow --format jsonl$
Pipeline run logsbdy pip run logs pipeline-identifier run-id action-run-id$
Pipeline run logs with jsonl outputbdy pip run logs pipeline-identifier run-id action-run-id --format jsonl$
Pipeline run cancelbdy pip run cancel pipeline-identifier run-id$
Pipeline run cancel with final output in jsonlbdy pip run cancel pipeline-identifier run-id --no-follow --format jsonl$
Pipeline run retrybdy pip run retry pipeline-identifier run-id$
Pipeline run retry with only final json outputbdy pip run retry pipeline-identifier run-id --no-follow --format json$
Pipeline run approvebdy pip run approve pipeline-identifier run-id action-run-id$
Pipeline run pass paramsbdy pip run approve pipeline-identifier run-id action-run-id -v a:b$
Pipeline run approve with final output in jsonlbdy pip run approve pipeline-identifier run-id action-run-id --no-follow --format jsonl$
Pipeline run listbdy pip run list pipeline-identifier$
Pipeline run list in jsonbdy pip run list pipeline-identifier --format json$
Pipeline listbdy pip list$
Pipeline list in jsonbdy pip list --format json$
Pipeline getbdy pip get pipeline-identifier$
Pipeline get in jsonbdy pip get pipeline-identifier --format json$
Pipeline deletebdy pip rm pipeline-identifier$
Pipeline force deletebdy pip rm pipeline-identifier -f$
Pipeline ymlbdy pip yml pipeline-identifier$
Pipeline create with namebdy pip create -n name$
Pipeline create with yamlbdy pip create --yaml @path/to/yaml$
Pipeline create with name, output jsonbdy pip create -n name --format json$
Pipeline update with yamlbdy pip update pipeline-identifier @path/to/yaml$
Pipeline update with yaml and output jsonbdy pip update pipeline-identifier @path/to/yaml --format json$