Firebird/Command Line Tools: Difference between revisions
From stonehomewiki
Jump to navigationJump to search
Stonezhong (talk | contribs) (Created page with "= Pipeline = <div class="toccolours mw-collapsible mw-collapsed expandable"> <div class="mw-collapsible-preview"></div> <div class="mw-collapsible-content"> </div> </div> <p></p>") |
Stonezhong (talk | contribs) |
||
| (2 intermediate revisions by the same user not shown) | |||
| Line 1: | Line 1: | ||
<p> [[Firebird]] </p> | |||
= Pipeline = | = Pipeline = | ||
<div class="toccolours mw-collapsible mw-collapsed expandable"> | <div class="toccolours mw-collapsible mw-collapsed expandable"> | ||
<div class="mw-collapsible-preview"></div> | <div class="mw-collapsible-preview"></div> | ||
<div class="mw-collapsible-content"> | <div class="mw-collapsible-content"> | ||
Examples: | |||
<pre><nowiki> | |||
pipeline list # list all pipelines | |||
pipeline start -pid test # start pipeline, pipeline id is "test", using 1 pod to run the pipeline | |||
pipeline start -pid test -r 10 # start pipeline, pipeline id is "test", using 10 pod to run the pipeline | |||
pipeline stop -pid test # stop a pipeline, pipeline id is "test" | |||
pipeline unregister -pid test # unregister a pipeline, pipeline id is "test | |||
pipeline register \ # register a pipeline | |||
--pipeline-module-name pipe \ # the name of the python module for the pipeline is "pipe" | |||
--pipeline-namespace-name firebird \ # your pipeline will be deployed to kubernete namespace "firebird" | |||
--pipeline-image-name iad.ocir.io/idrnu3akjpv5/firebird-app1 # your docker image for the pipeline is "iad.ocir.io/idrnu3akjpv5/firebird-app1" | |||
</nowiki></pre> | |||
</div> | </div> | ||
</div> | </div> | ||
<p></p> | <p></p> | ||