Configuring a Step
You can configure a single step to execute directly on the host node in the runtime
section of your step by specifying the type
as host
:
pipelines: - name: pipeline_example steps: - name: step_1 type: Bash # may be any step type configuration: runtime: type: host execution: ...
You should not add any image
section; that will cause pipeline source sync to fail.
Configuring a Pipeline
You can configure a pipeline to execute all steps by default directly on the host node in the runtime
section of your pipeline by specifying the type
as host
:
pipelines: - name: pipeline_host configuration: runtime: type: host
You should not add any image
section; that will cause pipeline source sync to fail.
You may override this pipeline's default in any step with a different runtime
specification.