![]() |
Runtime configuration specific to execution on Kubeflow pipelines.
Inherits From: PipelineConfig
tfx.orchestration.kubeflow.v2.kubeflow_v2_dag_runner.KubeflowV2DagRunnerConfig(
project_id: Text,
display_name: Optional[Text] = None,
default_image: Optional[Text] = None,
default_commands: Optional[List[Text]] = None,
**kwargs
)
Args | |
---|---|
project_id
|
GCP project ID to be used. |
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. |