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$