diff --git a/tests/example_pipelines/compiled_pipeline/example_1/kubeflow_pipeline.yml b/tests/example_pipelines/compiled_pipeline/example_1/kubeflow_pipeline.yml index 1806460b1..b39df7c9e 100644 --- a/tests/example_pipelines/compiled_pipeline/example_1/kubeflow_pipeline.yml +++ b/tests/example_pipelines/compiled_pipeline/example_1/kubeflow_pipeline.yml @@ -86,22 +86,20 @@ deploymentSpec: exec-first-component: container: args: - - "--input_manifest_path" - - "{{$.inputs.parameters['input_manifest_path']}}" - - "--component_spec" - - "{{$.inputs.parameters['component_spec']}}" - - "--input_partition_rows" - - "{{$.inputs.parameters['input_partition_rows']}}" - - "--cache" - - "{{$.inputs.parameters['cache']}}" - - "--cluster_type" - - "{{$.inputs.parameters['cluster_type']}}" - - "--metadata" - - "{{$.inputs.parameters['metadata']}}" - - "--output_manifest_path" - - "{{$.inputs.parameters['output_manifest_path']}}" - - "--storage_args" - - "{{$.inputs.parameters['storage_args']}}" + - --storage_args + - '{{$.inputs.parameters[''storage_args'']}}' + - --input_partition_rows + - '{{$.inputs.parameters[''input_partition_rows'']}}' + - --cache + - '{{$.inputs.parameters[''cache'']}}' + - --cluster_type + - '{{$.inputs.parameters[''cluster_type'']}}' + - --component_spec + - '{{$.inputs.parameters[''component_spec'']}}' + - --output_manifest_path + - '{{$.inputs.parameters[''output_manifest_path'']}}' + - --metadata + - '{{$.inputs.parameters[''metadata'']}}' command: - fondant - execute @@ -113,22 +111,22 @@ deploymentSpec: exec-second-component: container: args: - - "--input_manifest_path" - - "{{$.inputs.parameters['input_manifest_path']}}" - - "--component_spec" - - "{{$.inputs.parameters['component_spec']}}" - - "--input_partition_rows" - - "{{$.inputs.parameters['input_partition_rows']}}" - - "--cache" - - "{{$.inputs.parameters['cache']}}" - - "--cluster_type" - - "{{$.inputs.parameters['cluster_type']}}" - - "--metadata" - - "{{$.inputs.parameters['metadata']}}" - - "--output_manifest_path" - - "{{$.inputs.parameters['output_manifest_path']}}" - - "--storage_args" - - "{{$.inputs.parameters['storage_args']}}" + - --storage_args + - '{{$.inputs.parameters[''storage_args'']}}' + - --input_partition_rows + - '{{$.inputs.parameters[''input_partition_rows'']}}' + - --cache + - '{{$.inputs.parameters[''cache'']}}' + - --cluster_type + - '{{$.inputs.parameters[''cluster_type'']}}' + - --component_spec + - '{{$.inputs.parameters[''component_spec'']}}' + - --output_manifest_path + - '{{$.inputs.parameters[''output_manifest_path'']}}' + - --metadata + - '{{$.inputs.parameters[''metadata'']}}' + - --input_manifest_path + - '{{$.inputs.parameters[''input_manifest_path'']}}' command: - fondant - execute @@ -137,22 +135,20 @@ deploymentSpec: exec-third-component: container: args: - - "--input_manifest_path" - - "{{$.inputs.parameters['input_manifest_path']}}" - - "--component_spec" - - "{{$.inputs.parameters['component_spec']}}" - - "--input_partition_rows" - - "{{$.inputs.parameters['input_partition_rows']}}" - - "--cache" - - "{{$.inputs.parameters['cache']}}" - - "--cluster_type" - - "{{$.inputs.parameters['cluster_type']}}" - - "--metadata" - - "{{$.inputs.parameters['metadata']}}" - - "--output_manifest_path" - - "{{$.inputs.parameters['output_manifest_path']}}" - - "--storage_args" - - "{{$.inputs.parameters['storage_args']}}" + - --storage_args + - '{{$.inputs.parameters[''storage_args'']}}' + - --cache + - '{{$.inputs.parameters[''cache'']}}' + - --cluster_type + - '{{$.inputs.parameters[''cluster_type'']}}' + - --component_spec + - '{{$.inputs.parameters[''component_spec'']}}' + - --output_manifest_path + - '{{$.inputs.parameters[''output_manifest_path'']}}' + - --metadata + - '{{$.inputs.parameters[''metadata'']}}' + - --input_manifest_path + - '{{$.inputs.parameters[''input_manifest_path'']}}' command: - fondant - execute @@ -197,7 +193,7 @@ root: type: binary input_partition_rows: runtimeValue: - constant: 10 + constant: 10.0 metadata: runtimeValue: constant: '{"base_path": "/foo/bar", "pipeline_name": "testpipeline", @@ -205,7 +201,7 @@ root: "cache_key": "1"}' output_manifest_path: runtimeValue: - constant: "/foo/bar/testpipeline/testpipeline-20230101000000/first_component/manifest.json" + constant: /foo/bar/testpipeline/testpipeline-20230101000000/first_component/manifest.json storage_args: runtimeValue: constant: a dummy string arg @@ -249,10 +245,10 @@ root: type: array input_manifest_path: runtimeValue: - constant: "/foo/bar/testpipeline/testpipeline-20230101000000/first_component/manifest.json" + constant: /foo/bar/testpipeline/testpipeline-20230101000000/first_component/manifest.json input_partition_rows: runtimeValue: - constant: 10 + constant: 10.0 metadata: runtimeValue: constant: '{"base_path": "/foo/bar", "pipeline_name": "testpipeline", @@ -260,7 +256,7 @@ root: "cache_key": "2"}' output_manifest_path: runtimeValue: - constant: "/foo/bar/testpipeline/testpipeline-20230101000000/second_component/manifest.json" + constant: /foo/bar/testpipeline/testpipeline-20230101000000/second_component/manifest.json storage_args: runtimeValue: constant: a dummy string arg @@ -313,7 +309,7 @@ root: type: binary input_manifest_path: runtimeValue: - constant: "/foo/bar/testpipeline/testpipeline-20230101000000/second_component/manifest.json" + constant: /foo/bar/testpipeline/testpipeline-20230101000000/second_component/manifest.json metadata: runtimeValue: constant: '{"base_path": "/foo/bar", "pipeline_name": "testpipeline", @@ -321,7 +317,7 @@ root: "cache_key": "3"}' output_manifest_path: runtimeValue: - constant: "/foo/bar/testpipeline/testpipeline-20230101000000/third_component/manifest.json" + constant: /foo/bar/testpipeline/testpipeline-20230101000000/third_component/manifest.json storage_args: runtimeValue: constant: a dummy string arg diff --git a/tests/example_pipelines/compiled_pipeline/example_1/vertex_pipeline.yml b/tests/example_pipelines/compiled_pipeline/example_1/vertex_pipeline.yml index dd789c373..a524d8e35 100644 --- a/tests/example_pipelines/compiled_pipeline/example_1/vertex_pipeline.yml +++ b/tests/example_pipelines/compiled_pipeline/example_1/vertex_pipeline.yml @@ -85,22 +85,20 @@ deploymentSpec: exec-first-component: container: args: - - "--input_manifest_path" - - "{{$.inputs.parameters['input_manifest_path']}}" - - "--component_spec" - - "{{$.inputs.parameters['component_spec']}}" - - "--input_partition_rows" - - "{{$.inputs.parameters['input_partition_rows']}}" - - "--cache" - - "{{$.inputs.parameters['cache']}}" - - "--cluster_type" - - "{{$.inputs.parameters['cluster_type']}}" - - "--metadata" - - "{{$.inputs.parameters['metadata']}}" - - "--output_manifest_path" - - "{{$.inputs.parameters['output_manifest_path']}}" - - "--storage_args" - - "{{$.inputs.parameters['storage_args']}}" + - --storage_args + - '{{$.inputs.parameters[''storage_args'']}}' + - --input_partition_rows + - '{{$.inputs.parameters[''input_partition_rows'']}}' + - --cache + - '{{$.inputs.parameters[''cache'']}}' + - --cluster_type + - '{{$.inputs.parameters[''cluster_type'']}}' + - --component_spec + - '{{$.inputs.parameters[''component_spec'']}}' + - --output_manifest_path + - '{{$.inputs.parameters[''output_manifest_path'']}}' + - --metadata + - '{{$.inputs.parameters[''metadata'']}}' command: - fondant - execute @@ -109,22 +107,22 @@ deploymentSpec: exec-second-component: container: args: - - "--input_manifest_path" - - "{{$.inputs.parameters['input_manifest_path']}}" - - "--component_spec" - - "{{$.inputs.parameters['component_spec']}}" - - "--input_partition_rows" - - "{{$.inputs.parameters['input_partition_rows']}}" - - "--cache" - - "{{$.inputs.parameters['cache']}}" - - "--cluster_type" - - "{{$.inputs.parameters['cluster_type']}}" - - "--metadata" - - "{{$.inputs.parameters['metadata']}}" - - "--output_manifest_path" - - "{{$.inputs.parameters['output_manifest_path']}}" - - "--storage_args" - - "{{$.inputs.parameters['storage_args']}}" + - --storage_args + - '{{$.inputs.parameters[''storage_args'']}}' + - --input_partition_rows + - '{{$.inputs.parameters[''input_partition_rows'']}}' + - --cache + - '{{$.inputs.parameters[''cache'']}}' + - --cluster_type + - '{{$.inputs.parameters[''cluster_type'']}}' + - --component_spec + - '{{$.inputs.parameters[''component_spec'']}}' + - --output_manifest_path + - '{{$.inputs.parameters[''output_manifest_path'']}}' + - --metadata + - '{{$.inputs.parameters[''metadata'']}}' + - --input_manifest_path + - '{{$.inputs.parameters[''input_manifest_path'']}}' command: - fondant - execute @@ -133,22 +131,20 @@ deploymentSpec: exec-third-component: container: args: - - "--input_manifest_path" - - "{{$.inputs.parameters['input_manifest_path']}}" - - "--component_spec" - - "{{$.inputs.parameters['component_spec']}}" - - "--input_partition_rows" - - "{{$.inputs.parameters['input_partition_rows']}}" - - "--cache" - - "{{$.inputs.parameters['cache']}}" - - "--cluster_type" - - "{{$.inputs.parameters['cluster_type']}}" - - "--metadata" - - "{{$.inputs.parameters['metadata']}}" - - "--output_manifest_path" - - "{{$.inputs.parameters['output_manifest_path']}}" - - "--storage_args" - - "{{$.inputs.parameters['storage_args']}}" + - --storage_args + - '{{$.inputs.parameters[''storage_args'']}}' + - --cache + - '{{$.inputs.parameters[''cache'']}}' + - --cluster_type + - '{{$.inputs.parameters[''cluster_type'']}}' + - --component_spec + - '{{$.inputs.parameters[''component_spec'']}}' + - --output_manifest_path + - '{{$.inputs.parameters[''output_manifest_path'']}}' + - --metadata + - '{{$.inputs.parameters[''metadata'']}}' + - --input_manifest_path + - '{{$.inputs.parameters[''input_manifest_path'']}}' command: - fondant - execute @@ -201,7 +197,7 @@ root: "cache_key": "1"}' output_manifest_path: runtimeValue: - constant: "/foo/bar/testpipeline/testpipeline-20230101000000/first_component/manifest.json" + constant: /foo/bar/testpipeline/testpipeline-20230101000000/first_component/manifest.json storage_args: runtimeValue: constant: a dummy string arg @@ -245,7 +241,7 @@ root: type: array input_manifest_path: runtimeValue: - constant: "/foo/bar/testpipeline/testpipeline-20230101000000/first_component/manifest.json" + constant: /foo/bar/testpipeline/testpipeline-20230101000000/first_component/manifest.json input_partition_rows: runtimeValue: constant: 10.0 @@ -256,7 +252,7 @@ root: "cache_key": "2"}' output_manifest_path: runtimeValue: - constant: "/foo/bar/testpipeline/testpipeline-20230101000000/second_component/manifest.json" + constant: /foo/bar/testpipeline/testpipeline-20230101000000/second_component/manifest.json storage_args: runtimeValue: constant: a dummy string arg @@ -309,7 +305,7 @@ root: type: binary input_manifest_path: runtimeValue: - constant: "/foo/bar/testpipeline/testpipeline-20230101000000/second_component/manifest.json" + constant: /foo/bar/testpipeline/testpipeline-20230101000000/second_component/manifest.json metadata: runtimeValue: constant: '{"base_path": "/foo/bar", "pipeline_name": "testpipeline", @@ -317,7 +313,7 @@ root: "cache_key": "3"}' output_manifest_path: runtimeValue: - constant: "/foo/bar/testpipeline/testpipeline-20230101000000/third_component/manifest.json" + constant: /foo/bar/testpipeline/testpipeline-20230101000000/third_component/manifest.json storage_args: runtimeValue: constant: a dummy string arg diff --git a/tests/example_pipelines/compiled_pipeline/example_2/kubeflow_pipeline.yml b/tests/example_pipelines/compiled_pipeline/example_2/kubeflow_pipeline.yml index 84f86af77..99f57051a 100644 --- a/tests/example_pipelines/compiled_pipeline/example_2/kubeflow_pipeline.yml +++ b/tests/example_pipelines/compiled_pipeline/example_2/kubeflow_pipeline.yml @@ -66,22 +66,18 @@ deploymentSpec: exec-first-component: container: args: - - "--input_manifest_path" - - "{{$.inputs.parameters['input_manifest_path']}}" - - "--component_spec" - - "{{$.inputs.parameters['component_spec']}}" - - "--input_partition_rows" - - "{{$.inputs.parameters['input_partition_rows']}}" - - "--cache" - - "{{$.inputs.parameters['cache']}}" - - "--cluster_type" - - "{{$.inputs.parameters['cluster_type']}}" - - "--metadata" - - "{{$.inputs.parameters['metadata']}}" - - "--output_manifest_path" - - "{{$.inputs.parameters['output_manifest_path']}}" - - "--storage_args" - - "{{$.inputs.parameters['storage_args']}}" + - --storage_args + - '{{$.inputs.parameters[''storage_args'']}}' + - --cache + - '{{$.inputs.parameters[''cache'']}}' + - --cluster_type + - '{{$.inputs.parameters[''cluster_type'']}}' + - --component_spec + - '{{$.inputs.parameters[''component_spec'']}}' + - --output_manifest_path + - '{{$.inputs.parameters[''output_manifest_path'']}}' + - --metadata + - '{{$.inputs.parameters[''metadata'']}}' command: - fondant - execute @@ -90,24 +86,22 @@ deploymentSpec: exec-image-cropping: container: args: - - "--input_manifest_path" - - "{{$.inputs.parameters['input_manifest_path']}}" - - "--component_spec" - - "{{$.inputs.parameters['component_spec']}}" - - "--input_partition_rows" - - "{{$.inputs.parameters['input_partition_rows']}}" - - "--cache" - - "{{$.inputs.parameters['cache']}}" - - "--cluster_type" - - "{{$.inputs.parameters['cluster_type']}}" - - "--metadata" - - "{{$.inputs.parameters['metadata']}}" - - "--output_manifest_path" - - "{{$.inputs.parameters['output_manifest_path']}}" - - "--cropping_threshold" - - "{{$.inputs.parameters['cropping_threshold']}}" - - "--padding" - - "{{$.inputs.parameters['padding']}}" + - --cropping_threshold + - '{{$.inputs.parameters[''cropping_threshold'']}}' + - --padding + - '{{$.inputs.parameters[''padding'']}}' + - --cache + - '{{$.inputs.parameters[''cache'']}}' + - --cluster_type + - '{{$.inputs.parameters[''cluster_type'']}}' + - --component_spec + - '{{$.inputs.parameters[''component_spec'']}}' + - --output_manifest_path + - '{{$.inputs.parameters[''output_manifest_path'']}}' + - --metadata + - '{{$.inputs.parameters[''metadata'']}}' + - --input_manifest_path + - '{{$.inputs.parameters[''input_manifest_path'']}}' command: - fondant - execute @@ -157,7 +151,7 @@ root: "cache_key": "1"}' output_manifest_path: runtimeValue: - constant: "/foo/bar/testpipeline/testpipeline-20230101000000/first_component/manifest.json" + constant: /foo/bar/testpipeline/testpipeline-20230101000000/first_component/manifest.json storage_args: runtimeValue: constant: a dummy string arg @@ -197,21 +191,22 @@ root: fields: data: type: binary - description: "This component crops out image borders. This is typically - useful when working with graphical \nimages that have single-color - borders (e.g. logos, icons, etc.).\n\nThe component takes an image - and calculates which color is most present in the border. It then - \ncrops the image in order to minimize this single-color border. - The `padding` argument will add \nextra border to the image before - cropping it, in order to avoid cutting off parts of the image.\nThe - resulting crop will always be square. If a crop is not possible, - the component will return \nthe original image.\n\n#### Examples\nExamples - of image cropping by removing the single-color border. Left side - is original image, \nright side is border-cropped image.\n\n![Example - of image cropping by removing the single-color border. Left side - is original, right side is cropped image](../../docs/art/components/image_cropping/component_border_crop_1.png)\n![Example - of image cropping by removing the single-color border. Left side - is original, right side is cropped image](../../docs/art/components/image_cropping/component_border_crop_0.png)\n" + description: "This component crops out image borders. This is typically\ + \ useful when working with graphical \nimages that have single-color\ + \ borders (e.g. logos, icons, etc.).\n\nThe component takes an\ + \ image and calculates which color is most present in the border.\ + \ It then \ncrops the image in order to minimize this single-color\ + \ border. The `padding` argument will add \nextra border to the\ + \ image before cropping it, in order to avoid cutting off parts\ + \ of the image.\nThe resulting crop will always be square. If\ + \ a crop is not possible, the component will return \nthe original\ + \ image.\n\n#### Examples\nExamples of image cropping by removing\ + \ the single-color border. Left side is original image, \nright\ + \ side is border-cropped image.\n\n![Example of image cropping\ + \ by removing the single-color border. Left side is original,\ + \ right side is cropped image](../../docs/art/components/image_cropping/component_border_crop_1.png)\n\ + ![Example of image cropping by removing the single-color border.\ + \ Left side is original, right side is cropped image](../../docs/art/components/image_cropping/component_border_crop_0.png)\n" image: fndnt/image_cropping:dev name: Image cropping produces: @@ -228,7 +223,7 @@ root: constant: 0.0 input_manifest_path: runtimeValue: - constant: "/foo/bar/testpipeline/testpipeline-20230101000000/first_component/manifest.json" + constant: /foo/bar/testpipeline/testpipeline-20230101000000/first_component/manifest.json metadata: runtimeValue: constant: '{"base_path": "/foo/bar", "pipeline_name": "testpipeline", @@ -236,7 +231,7 @@ root: "cache_key": "2"}' output_manifest_path: runtimeValue: - constant: "/foo/bar/testpipeline/testpipeline-20230101000000/image_cropping/manifest.json" + constant: /foo/bar/testpipeline/testpipeline-20230101000000/image_cropping/manifest.json padding: runtimeValue: constant: 0.0 diff --git a/tests/example_pipelines/compiled_pipeline/example_2/vertex_pipeline.yml b/tests/example_pipelines/compiled_pipeline/example_2/vertex_pipeline.yml index 84f86af77..99f57051a 100644 --- a/tests/example_pipelines/compiled_pipeline/example_2/vertex_pipeline.yml +++ b/tests/example_pipelines/compiled_pipeline/example_2/vertex_pipeline.yml @@ -66,22 +66,18 @@ deploymentSpec: exec-first-component: container: args: - - "--input_manifest_path" - - "{{$.inputs.parameters['input_manifest_path']}}" - - "--component_spec" - - "{{$.inputs.parameters['component_spec']}}" - - "--input_partition_rows" - - "{{$.inputs.parameters['input_partition_rows']}}" - - "--cache" - - "{{$.inputs.parameters['cache']}}" - - "--cluster_type" - - "{{$.inputs.parameters['cluster_type']}}" - - "--metadata" - - "{{$.inputs.parameters['metadata']}}" - - "--output_manifest_path" - - "{{$.inputs.parameters['output_manifest_path']}}" - - "--storage_args" - - "{{$.inputs.parameters['storage_args']}}" + - --storage_args + - '{{$.inputs.parameters[''storage_args'']}}' + - --cache + - '{{$.inputs.parameters[''cache'']}}' + - --cluster_type + - '{{$.inputs.parameters[''cluster_type'']}}' + - --component_spec + - '{{$.inputs.parameters[''component_spec'']}}' + - --output_manifest_path + - '{{$.inputs.parameters[''output_manifest_path'']}}' + - --metadata + - '{{$.inputs.parameters[''metadata'']}}' command: - fondant - execute @@ -90,24 +86,22 @@ deploymentSpec: exec-image-cropping: container: args: - - "--input_manifest_path" - - "{{$.inputs.parameters['input_manifest_path']}}" - - "--component_spec" - - "{{$.inputs.parameters['component_spec']}}" - - "--input_partition_rows" - - "{{$.inputs.parameters['input_partition_rows']}}" - - "--cache" - - "{{$.inputs.parameters['cache']}}" - - "--cluster_type" - - "{{$.inputs.parameters['cluster_type']}}" - - "--metadata" - - "{{$.inputs.parameters['metadata']}}" - - "--output_manifest_path" - - "{{$.inputs.parameters['output_manifest_path']}}" - - "--cropping_threshold" - - "{{$.inputs.parameters['cropping_threshold']}}" - - "--padding" - - "{{$.inputs.parameters['padding']}}" + - --cropping_threshold + - '{{$.inputs.parameters[''cropping_threshold'']}}' + - --padding + - '{{$.inputs.parameters[''padding'']}}' + - --cache + - '{{$.inputs.parameters[''cache'']}}' + - --cluster_type + - '{{$.inputs.parameters[''cluster_type'']}}' + - --component_spec + - '{{$.inputs.parameters[''component_spec'']}}' + - --output_manifest_path + - '{{$.inputs.parameters[''output_manifest_path'']}}' + - --metadata + - '{{$.inputs.parameters[''metadata'']}}' + - --input_manifest_path + - '{{$.inputs.parameters[''input_manifest_path'']}}' command: - fondant - execute @@ -157,7 +151,7 @@ root: "cache_key": "1"}' output_manifest_path: runtimeValue: - constant: "/foo/bar/testpipeline/testpipeline-20230101000000/first_component/manifest.json" + constant: /foo/bar/testpipeline/testpipeline-20230101000000/first_component/manifest.json storage_args: runtimeValue: constant: a dummy string arg @@ -197,21 +191,22 @@ root: fields: data: type: binary - description: "This component crops out image borders. This is typically - useful when working with graphical \nimages that have single-color - borders (e.g. logos, icons, etc.).\n\nThe component takes an image - and calculates which color is most present in the border. It then - \ncrops the image in order to minimize this single-color border. - The `padding` argument will add \nextra border to the image before - cropping it, in order to avoid cutting off parts of the image.\nThe - resulting crop will always be square. If a crop is not possible, - the component will return \nthe original image.\n\n#### Examples\nExamples - of image cropping by removing the single-color border. Left side - is original image, \nright side is border-cropped image.\n\n![Example - of image cropping by removing the single-color border. Left side - is original, right side is cropped image](../../docs/art/components/image_cropping/component_border_crop_1.png)\n![Example - of image cropping by removing the single-color border. Left side - is original, right side is cropped image](../../docs/art/components/image_cropping/component_border_crop_0.png)\n" + description: "This component crops out image borders. This is typically\ + \ useful when working with graphical \nimages that have single-color\ + \ borders (e.g. logos, icons, etc.).\n\nThe component takes an\ + \ image and calculates which color is most present in the border.\ + \ It then \ncrops the image in order to minimize this single-color\ + \ border. The `padding` argument will add \nextra border to the\ + \ image before cropping it, in order to avoid cutting off parts\ + \ of the image.\nThe resulting crop will always be square. If\ + \ a crop is not possible, the component will return \nthe original\ + \ image.\n\n#### Examples\nExamples of image cropping by removing\ + \ the single-color border. Left side is original image, \nright\ + \ side is border-cropped image.\n\n![Example of image cropping\ + \ by removing the single-color border. Left side is original,\ + \ right side is cropped image](../../docs/art/components/image_cropping/component_border_crop_1.png)\n\ + ![Example of image cropping by removing the single-color border.\ + \ Left side is original, right side is cropped image](../../docs/art/components/image_cropping/component_border_crop_0.png)\n" image: fndnt/image_cropping:dev name: Image cropping produces: @@ -228,7 +223,7 @@ root: constant: 0.0 input_manifest_path: runtimeValue: - constant: "/foo/bar/testpipeline/testpipeline-20230101000000/first_component/manifest.json" + constant: /foo/bar/testpipeline/testpipeline-20230101000000/first_component/manifest.json metadata: runtimeValue: constant: '{"base_path": "/foo/bar", "pipeline_name": "testpipeline", @@ -236,7 +231,7 @@ root: "cache_key": "2"}' output_manifest_path: runtimeValue: - constant: "/foo/bar/testpipeline/testpipeline-20230101000000/image_cropping/manifest.json" + constant: /foo/bar/testpipeline/testpipeline-20230101000000/image_cropping/manifest.json padding: runtimeValue: constant: 0.0 diff --git a/tests/example_specs/component_specs/kubeflow_component.yaml b/tests/example_specs/component_specs/kubeflow_component.yaml index 41662ac03..d8864f0f4 100644 --- a/tests/example_specs/component_specs/kubeflow_component.yaml +++ b/tests/example_specs/component_specs/kubeflow_component.yaml @@ -36,23 +36,6 @@ deploymentSpec: executors: exec-example-component: container: - args: - - --input_manifest_path - - '{{$.inputs.parameters[''input_manifest_path'']}}' - - --component_spec - - '{{$.inputs.parameters[''component_spec'']}}' - - --input_partition_rows - - '{{$.inputs.parameters[''input_partition_rows'']}}' - - --cache - - '{{$.inputs.parameters[''cache'']}}' - - --cluster_type - - '{{$.inputs.parameters[''cluster_type'']}}' - - --metadata - - '{{$.inputs.parameters[''metadata'']}}' - - --output_manifest_path - - '{{$.inputs.parameters[''output_manifest_path'']}}' - - --storage_args - - '{{$.inputs.parameters[''storage_args'']}}' command: - fondant - execute