Skip to content

Commit 07efee5

Browse files
Jiaxiao Zhengk8s-ci-robot
Jiaxiao Zheng
authored andcommitted
[Component] Fix the component arguments (#2803)
* fix position of ui md path * update image tag * Revert "update image tag" This reverts commit 14e2835
1 parent dd207b1 commit 07efee5

File tree

13 files changed

+13
-13
lines changed

13 files changed

+13
-13
lines changed

components/gcp/bigquery/query/component.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@ implementation:
6161
container:
6262
image: gcr.io/ml-pipeline/ml-pipeline-gcp:a8fcec5f702fc2528c87ed6fd698b9cfca8b509e
6363
args: [
64+
--ui_metadata_path, {outputPath: MLPipeline UI metadata},
6465
kfp_component.google.bigquery, query,
6566
--query, {inputValue: query},
6667
--project_id, {inputValue: project_id},
@@ -69,7 +70,6 @@ implementation:
6970
--dataset_location, {inputValue: dataset_location},
7071
--output_gcs_path, {inputValue: output_gcs_path},
7172
--job_config, {inputValue: job_config},
72-
--ui-metadata-path, {outputPath: MLPipeline UI metadata},
7373
]
7474
env:
7575
KFP_POD_NAME: "{{pod.name}}"

components/gcp/dataflow/launch_python/component.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,14 @@ implementation:
5555
container:
5656
image: gcr.io/ml-pipeline/ml-pipeline-gcp:a8fcec5f702fc2528c87ed6fd698b9cfca8b509e
5757
args: [
58+
--ui_metadata_path, {outputPath: MLPipeline UI metadata},
5859
kfp_component.google.dataflow, launch_python,
5960
--python_file_path, {inputValue: python_file_path},
6061
--project_id, {inputValue: project_id},
6162
--staging_dir, {inputValue: staging_dir},
6263
--requirements_file_path, {inputValue: requirements_file_path},
6364
--args, {inputValue: args},
6465
--wait_interval, {inputValue: wait_interval},
65-
--ui-metadata-path, {outputPath: MLPipeline UI metadata},
6666
]
6767
env:
6868
KFP_POD_NAME: "{{pod.name}}"

components/gcp/dataflow/launch_template/component.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,7 @@ implementation:
6565
container:
6666
image: gcr.io/ml-pipeline/ml-pipeline-gcp:a8fcec5f702fc2528c87ed6fd698b9cfca8b509e
6767
args: [
68+
--ui_metadata_path, {outputPath: MLPipeline UI metadata},
6869
kfp_component.google.dataflow, launch_template,
6970
--project_id, {inputValue: project_id},
7071
--gcs_path, {inputValue: gcs_path},
@@ -73,7 +74,6 @@ implementation:
7374
--validate_only, {inputValue: validate_only},
7475
--staging_dir, {inputValue: staging_dir},
7576
--wait_interval, {inputValue: wait_interval},
76-
--ui-metadata-path, {outputPath: MLPipeline UI metadata},
7777
]
7878
env:
7979
KFP_POD_NAME: "{{pod.name}}"

components/gcp/dataproc/create_cluster/component.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ implementation:
7272
container:
7373
image: gcr.io/ml-pipeline/ml-pipeline-gcp:a8fcec5f702fc2528c87ed6fd698b9cfca8b509e
7474
args: [
75+
--ui_metadata_path, {outputPath: MLPipeline UI metadata},
7576
kfp_component.google.dataproc, create_cluster,
7677
--project_id, {inputValue: project_id},
7778
--region, {inputValue: region},
@@ -82,7 +83,6 @@ implementation:
8283
--image_version, {inputValue: image_version},
8384
--cluster, {inputValue: cluster},
8485
--wait_interval, {inputValue: wait_interval},
85-
--ui-metadata-path, {outputPath: MLPipeline UI metadata},
8686
]
8787
env:
8888
KFP_POD_NAME: "{{pod.name}}"

components/gcp/dataproc/submit_hadoop_job/component.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ implementation:
8282
container:
8383
image: gcr.io/ml-pipeline/ml-pipeline-gcp:a8fcec5f702fc2528c87ed6fd698b9cfca8b509e
8484
args: [
85+
--ui_metadata_path, {outputPath: MLPipeline UI metadata},
8586
kfp_component.google.dataproc, submit_hadoop_job,
8687
--project_id, {inputValue: project_id},
8788
--region, {inputValue: region},
@@ -92,7 +93,6 @@ implementation:
9293
--hadoop_job, {inputValue: hadoop_job},
9394
--job, {inputValue: job},
9495
--wait_interval, {inputValue: wait_interval},
95-
--ui-metadata-path, {outputPath: MLPipeline UI metadata},
9696
]
9797
env:
9898
KFP_POD_NAME: "{{pod.name}}"

components/gcp/dataproc/submit_hive_job/component.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ implementation:
7777
container:
7878
image: gcr.io/ml-pipeline/ml-pipeline-gcp:a8fcec5f702fc2528c87ed6fd698b9cfca8b509e
7979
args: [
80+
--ui_metadata_path, {outputPath: MLPipeline UI metadata},
8081
kfp_component.google.dataproc, submit_hive_job,
8182
--project_id, {inputValue: project_id},
8283
--region, {inputValue: region},
@@ -87,7 +88,6 @@ implementation:
8788
--hive_job, {inputValue: hive_job},
8889
--job, {inputValue: job},
8990
--wait_interval, {inputValue: wait_interval},
90-
--ui-metadata-path, {outputPath: MLPipeline UI metadata},
9191
]
9292
env:
9393
KFP_POD_NAME: "{{pod.name}}"

components/gcp/dataproc/submit_pig_job/component.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ implementation:
7777
container:
7878
image: gcr.io/ml-pipeline/ml-pipeline-gcp:a8fcec5f702fc2528c87ed6fd698b9cfca8b509e
7979
args: [
80+
--ui_metadata_path, {outputPath: MLPipeline UI metadata},
8081
kfp_component.google.dataproc, submit_pig_job,
8182
--project_id, {inputValue: project_id},
8283
--region, {inputValue: region},
@@ -87,7 +88,6 @@ implementation:
8788
--pig_job, {inputValue: pig_job},
8889
--job, {inputValue: job},
8990
--wait_interval, {inputValue: wait_interval},
90-
--ui-metadata-path, {outputPath: MLPipeline UI metadata},
9191
]
9292
env:
9393
KFP_POD_NAME: "{{pod.name}}"

components/gcp/dataproc/submit_pyspark_job/component.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ implementation:
7171
container:
7272
image: gcr.io/ml-pipeline/ml-pipeline-gcp:a8fcec5f702fc2528c87ed6fd698b9cfca8b509e
7373
args: [
74+
--ui_metadata_path, {outputPath: MLPipeline UI metadata},
7475
kfp_component.google.dataproc, submit_pyspark_job,
7576
--project_id, {inputValue: project_id},
7677
--region, {inputValue: region},
@@ -80,7 +81,6 @@ implementation:
8081
--pyspark_job, {inputValue: pyspark_job},
8182
--job, {inputValue: job},
8283
--wait_interval, {inputValue: wait_interval},
83-
--ui-metadata-path, {outputPath: MLPipeline UI metadata},
8484
]
8585
env:
8686
KFP_POD_NAME: "{{pod.name}}"

components/gcp/dataproc/submit_spark_job/component.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,6 +78,7 @@ implementation:
7878
container:
7979
image: gcr.io/ml-pipeline/ml-pipeline-gcp:a8fcec5f702fc2528c87ed6fd698b9cfca8b509e
8080
args: [
81+
--ui_metadata_path, {outputPath: MLPipeline UI metadata},
8182
kfp_component.google.dataproc, submit_spark_job,
8283
--project_id, {inputValue: project_id},
8384
--region, {inputValue: region},
@@ -88,7 +89,6 @@ implementation:
8889
--spark_job, {inputValue: spark_job},
8990
--job, {inputValue: job},
9091
--wait_interval, {inputValue: wait_interval},
91-
--ui-metadata-path, {outputPath: MLPipeline UI metadata},
9292
]
9393
env:
9494
KFP_POD_NAME: "{{pod.name}}"

components/gcp/dataproc/submit_sparksql_job/component.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ implementation:
7777
container:
7878
image: gcr.io/ml-pipeline/ml-pipeline-gcp:a8fcec5f702fc2528c87ed6fd698b9cfca8b509e
7979
args: [
80+
--ui_metadata_path, {outputPath: MLPipeline UI metadata},
8081
kfp_component.google.dataproc, submit_sparksql_job,
8182
--project_id, {inputValue: project_id},
8283
--region, {inputValue: region},
@@ -87,7 +88,6 @@ implementation:
8788
--sparksql_job, {inputValue: sparksql_job},
8889
--job, {inputValue: job},
8990
--wait_interval, {inputValue: wait_interval},
90-
--ui-metadata-path, {outputPath: MLPipeline UI metadata},
9191
]
9292
env:
9393
KFP_POD_NAME: "{{pod.name}}"

components/gcp/ml_engine/batch_predict/component.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,7 @@ implementation:
7171
container:
7272
image: gcr.io/ml-pipeline/ml-pipeline-gcp:a8fcec5f702fc2528c87ed6fd698b9cfca8b509e
7373
args: [
74+
--ui_metadata_path, {outputPath: MLPipeline UI metadata},
7475
kfp_component.google.ml_engine, batch_predict,
7576
--project_id, {inputValue: project_id},
7677
--model_path, {inputValue: model_path},
@@ -82,7 +83,6 @@ implementation:
8283
--prediction_input, {inputValue: prediction_input},
8384
--job_id_prefix, {inputValue: job_id_prefix},
8485
--wait_interval, {inputValue: wait_interval},
85-
--ui-metadata-path, {outputPath: MLPipeline UI metadata},
8686
]
8787
env:
8888
KFP_POD_NAME: "{{pod.name}}"

components/gcp/ml_engine/deploy/component.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,7 @@ implementation:
9797
container:
9898
image: gcr.io/ml-pipeline/ml-pipeline-gcp:a8fcec5f702fc2528c87ed6fd698b9cfca8b509e
9999
args: [
100+
--ui_metadata_path, {outputPath: MLPipeline UI metadata},
100101
kfp_component.google.ml_engine, deploy,
101102
--model_uri, {inputValue: model_uri},
102103
--project_id, {inputValue: project_id},
@@ -109,7 +110,6 @@ implementation:
109110
--replace_existing_version, {inputValue: replace_existing_version},
110111
--set_default, {inputValue: set_default},
111112
--wait_interval, {inputValue: wait_interval},
112-
--ui-metadata-path, {outputPath: MLPipeline UI metadata},
113113
]
114114
env:
115115
KFP_POD_NAME: "{{pod.name}}"

components/gcp/ml_engine/train/component.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,6 +105,7 @@ implementation:
105105
container:
106106
image: gcr.io/ml-pipeline/ml-pipeline-gcp:a8fcec5f702fc2528c87ed6fd698b9cfca8b509e
107107
args: [
108+
--ui_metadata_path, {outputPath: MLPipeline UI metadata},
108109
kfp_component.google.ml_engine, train,
109110
--project_id, {inputValue: project_id},
110111
--python_module, {inputValue: python_module},
@@ -119,7 +120,6 @@ implementation:
119120
--training_input, {inputValue: training_input},
120121
--job_id_prefix, {inputValue: job_id_prefix},
121122
--wait_interval, {inputValue: wait_interval},
122-
--ui-metadata-path, {outputPath: MLPipeline UI metadata},
123123
]
124124
env:
125125
KFP_POD_NAME: "{{pod.name}}"

0 commit comments

Comments
 (0)