Component Specification

Out of date

This guide contains outdated information pertaining to Kubeflow 1.0. This guide needs to be updated for Kubeflow 1.1.

This specification describes the container component data model for Kubeflow Pipelines. The data model is serialized to a file in YAML format for sharing.

Below are the main parts of the component definition:

  • Metadata: Name, description, and other metadata.
  • Interface (inputs and outputs): Name, type, default value.
  • Implementation: How to run the component, given the input arguments.

A component specification takes the form of a YAML file, . Below is an example:

See some examples of real-world component specifications.

This section describes the .

  • name: Human-readable name of the component.

    • annotations: A string key-value map used to add information about the component. Currently, the annotations get translated to Kubernetes annotations when the component task is executed on Kubernetes. Current limitation: the key cannot contain more that one slash (“/“). See more information in the Kubernetes user guide.
    • labels: Deprecated. Use annotations.

Interface

  • inputs and outputs: Specifies the list of inputs/outputs and their properties. Each input or output has the following properties:

    • name: Human-readable name of the input/output. Name must be unique inside the inputs or outputs section, but an output may have the same name as an input.
    • description: Human-readable description of the input/output.
    • default: Specifies the default value for an input. Only valid for inputs.
    • type: Specifies the type of input/output. The types are used as hints for pipeline authors and can be used by the pipeline system/UI to validate arguments and connections between components. Basic types are String, Integer, Float, and Bool. See the full list of types defined by the Kubeflow Pipelines SDK.
  • implementation: Specifies how to execute the component instance. There are two implementation types, and graph. (The latter is not in scope for this document.) In future we may introduce more implementation types like daemon or K8sResource.

    • container: Describes the Docker container that implements the component. A portable subset of the Kubernetes .

      • image: Name of the Docker image.
      • command: Entrypoint array. The Docker image’s ENTRYPOINT is used if this is not provided. Each item is either a string or a placeholder. The most common placeholders are {inputValue: Input name}, {inputPath: Input name} and {outputPath: Output name}.
      • args: Arguments to the entrypoint. The Docker image’s CMD is used if this is not provided. Each item is either a string or a placeholder. The most common placeholders are {inputValue: Input name}, {inputPath: Input name} and {outputPath: Output name}.
      • : Map of environment variables to set in the container.

You can set all other Kubernetes container properties when you use the component inside a pipeline.

Consuming input by value

The {inputValue: <Input name>} placeholder is replaced by the value of the input argument:

  • In component.yaml:

    1. command: [program.py, --rounds, {inputValue: Rounds}]
  • In the pipeline code:

    1. task1 = component1(rounds=150)
  • Resulting command-line code (showing the value of the input argument that has replaced the placeholder):

  • In component.yaml:

    1. command: [program.py, --train-set, {inputPath: training_data}]
  • In the pipeline code:

    1. task2 = component1(training_data=some_task1.outputs['some_data'])
  • Resulting command-line code (the placeholder is replaced by the generated path):

Producing outputs

The {outputPath: <Output name>} placeholder is replaced by a (generated) local file path where the component program is supposed to write the output data. The parent directories of the path may or may not not exist. Your program must handle both cases without error.

  • In component.yaml:

    1. command: [program.py, --out-model, {outputPath: trained_model}]
  • In the pipeline code:

    1. task1 = component1()
  • Resulting command-line code (the placeholder is replaced by the generated path):