Runtime configuration specific to execution on Kubeflow V2 pipelines.
tfx.v1.orchestration.experimental.KubeflowV2DagRunnerConfig(
display_name: Optional[str] = None,
default_image: Optional[str] = None,
default_commands: Optional[List[str]] = None,
**kwargs
)
Used in the notebooks
Args |
display_name
|
Optional human-readable pipeline name. Defaults to the
pipeline name passed into KubeflowV2DagRunner.run() .
|
default_image
|
The default TFX image to be used if not overriden by per
component specification.
|
default_commands
|
Optionally specifies the commands of the provided
container image. When not provided, the default ENTRYPOINT specified
in the docker image is used. Note: the commands here refers to the K8S
container command, which maps to Docker entrypoint field. If one
supplies command but no args are provided for the container, the
container will be invoked with the provided command, ignoring the
ENTRYPOINT and CMD defined in the Dockerfile. One can find more
details regarding the difference between K8S and Docker conventions at
https://kubernetes.io/docs/tasks/inject-data-application/define-command-argument-container/#notes
|
**kwargs
|
Additional args passed to base PipelineConfig.
|