Skip to content

Commit 0d898cb

Browse files
neuromagek8s-ci-robot
authored andcommitted
Release 0517114 (#1859)
* Updated component images to version 0517114 * Updated components to version 48dd338
1 parent 7dbca1a commit 0d898cb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

58 files changed

+88
-88
lines changed

components/dataflow/predict/component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ outputs:
1515
- {name: Predictions dir, type: GCSPath, description: 'GCS or local directory.'} #Will contain prediction_results-* and schema.json files; TODO: Split outputs and replace dir with single file # type: {GCSPath: {path_type: Directory}}
1616
implementation:
1717
container:
18-
image: gcr.io/ml-pipeline/ml-pipeline-dataflow-tf-predict:fe639f41661d8e17fcda64ff8242127620b80ba0
18+
image: gcr.io/ml-pipeline/ml-pipeline-dataflow-tf-predict:0517114dc2b365a4a6d95424af6157ead774eff3
1919
command: [python2, /ml/predict.py]
2020
args: [
2121
--data, {inputValue: Data file pattern},

components/dataflow/tfdv/component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ outputs:
1818
- {name: Validation result, type: String, description: Indicates whether anomalies were detected or not.}
1919
implementation:
2020
container:
21-
image: gcr.io/ml-pipeline/ml-pipeline-dataflow-tfdv:fe639f41661d8e17fcda64ff8242127620b80ba0
21+
image: gcr.io/ml-pipeline/ml-pipeline-dataflow-tfdv:0517114dc2b365a4a6d95424af6157ead774eff3
2222
command: [python2, /ml/validate.py]
2323
args: [
2424
--csv-data-for-inference, {inputValue: Inference data},

components/dataflow/tfma/component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ outputs:
1717
- {name: Analysis results dir, type: GCSPath, description: GCS or local directory where the analysis results should were written.} # type: {GCSPath: {path_type: Directory}}
1818
implementation:
1919
container:
20-
image: gcr.io/ml-pipeline/ml-pipeline-dataflow-tfma:fe639f41661d8e17fcda64ff8242127620b80ba0
20+
image: gcr.io/ml-pipeline/ml-pipeline-dataflow-tfma:0517114dc2b365a4a6d95424af6157ead774eff3
2121
command: [python2, /ml/model_analysis.py]
2222
args: [
2323
--model, {inputValue: Model},

components/dataflow/tft/component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ outputs:
1212
- {name: Transformed data dir, type: GCSPath} # type: {GCSPath: {path_type: Directory}}
1313
implementation:
1414
container:
15-
image: gcr.io/ml-pipeline/ml-pipeline-dataflow-tft:fe639f41661d8e17fcda64ff8242127620b80ba0
15+
image: gcr.io/ml-pipeline/ml-pipeline-dataflow-tft:0517114dc2b365a4a6d95424af6157ead774eff3
1616
command: [python2, /ml/transform.py]
1717
args: [
1818
--train, {inputValue: Training data file pattern},

components/gcp/bigquery/query/README.md

+1-1

components/gcp/bigquery/query/component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ outputs:
5757
type: GCSPath
5858
implementation:
5959
container:
60-
image: gcr.io/ml-pipeline/ml-pipeline-gcp:fe639f41661d8e17fcda64ff8242127620b80ba0
60+
image: gcr.io/ml-pipeline/ml-pipeline-gcp:0517114dc2b365a4a6d95424af6157ead774eff3
6161
args: [
6262
kfp_component.google.bigquery, query,
6363
--query, {inputValue: query},

components/gcp/bigquery/query/sample.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@
108108
"import kfp.components as comp\n",
109109
"\n",
110110
"bigquery_query_op = comp.load_component_from_url(\n",
111-
" 'https://raw.githubusercontent.com/kubeflow/pipelines/0b07e456b1f319d8b7a7301274f55c00fda9f537/components/gcp/bigquery/query/component.yaml')\n",
111+
" 'https://raw.githubusercontent.com/kubeflow/pipelines/48dd338c8ab328084633c51704cda77db79ac8c2/components/gcp/bigquery/query/component.yaml')\n",
112112
"help(bigquery_query_op)"
113113
]
114114
},

components/gcp/dataflow/launch_python/README.md

+1-1

components/gcp/dataflow/launch_python/component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ outputs:
5151
type: String
5252
implementation:
5353
container:
54-
image: gcr.io/ml-pipeline/ml-pipeline-gcp:fe639f41661d8e17fcda64ff8242127620b80ba0
54+
image: gcr.io/ml-pipeline/ml-pipeline-gcp:0517114dc2b365a4a6d95424af6157ead774eff3
5555
args: [
5656
kfp_component.google.dataflow, launch_python,
5757
--python_file_path, {inputValue: python_file_path},

components/gcp/dataflow/launch_python/sample.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
"import kfp.components as comp\n",
9696
"\n",
9797
"dataflow_python_op = comp.load_component_from_url(\n",
98-
" 'https://raw.githubusercontent.com/kubeflow/pipelines/0b07e456b1f319d8b7a7301274f55c00fda9f537/components/gcp/dataflow/launch_python/component.yaml')\n",
98+
" 'https://raw.githubusercontent.com/kubeflow/pipelines/48dd338c8ab328084633c51704cda77db79ac8c2/components/gcp/dataflow/launch_python/component.yaml')\n",
9999
"help(dataflow_python_op)"
100100
]
101101
},

components/gcp/dataflow/launch_template/README.md

+1-1

components/gcp/dataflow/launch_template/component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ outputs:
6161
type: String
6262
implementation:
6363
container:
64-
image: gcr.io/ml-pipeline/ml-pipeline-gcp:fe639f41661d8e17fcda64ff8242127620b80ba0
64+
image: gcr.io/ml-pipeline/ml-pipeline-gcp:0517114dc2b365a4a6d95424af6157ead774eff3
6565
args: [
6666
kfp_component.google.dataflow, launch_template,
6767
--project_id, {inputValue: project_id},

components/gcp/dataflow/launch_template/sample.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@
8585
"import kfp.components as comp\n",
8686
"\n",
8787
"dataflow_template_op = comp.load_component_from_url(\n",
88-
" 'https://raw.githubusercontent.com/kubeflow/pipelines/0b07e456b1f319d8b7a7301274f55c00fda9f537/components/gcp/dataflow/launch_template/component.yaml')\n",
88+
" 'https://raw.githubusercontent.com/kubeflow/pipelines/48dd338c8ab328084633c51704cda77db79ac8c2/components/gcp/dataflow/launch_template/component.yaml')\n",
8989
"help(dataflow_template_op)"
9090
]
9191
},

components/gcp/dataproc/create_cluster/README.md

+1-1

components/gcp/dataproc/create_cluster/component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ outputs:
6868
type: String
6969
implementation:
7070
container:
71-
image: gcr.io/ml-pipeline/ml-pipeline-gcp:fe639f41661d8e17fcda64ff8242127620b80ba0
71+
image: gcr.io/ml-pipeline/ml-pipeline-gcp:0517114dc2b365a4a6d95424af6157ead774eff3
7272
args: [
7373
kfp_component.google.dataproc, create_cluster,
7474
--project_id, {inputValue: project_id},

components/gcp/dataproc/create_cluster/sample.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
"import kfp.components as comp\n",
9393
"\n",
9494
"dataproc_create_cluster_op = comp.load_component_from_url(\n",
95-
" 'https://raw.githubusercontent.com/kubeflow/pipelines/0b07e456b1f319d8b7a7301274f55c00fda9f537/components/gcp/dataproc/create_cluster/component.yaml')\n",
95+
" 'https://raw.githubusercontent.com/kubeflow/pipelines/48dd338c8ab328084633c51704cda77db79ac8c2/components/gcp/dataproc/create_cluster/component.yaml')\n",
9696
"help(dataproc_create_cluster_op)"
9797
]
9898
},

components/gcp/dataproc/delete_cluster/README.md

+1-1

components/gcp/dataproc/delete_cluster/component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ inputs:
3636
type: Integer
3737
implementation:
3838
container:
39-
image: gcr.io/ml-pipeline/ml-pipeline-gcp:fe639f41661d8e17fcda64ff8242127620b80ba0
39+
image: gcr.io/ml-pipeline/ml-pipeline-gcp:0517114dc2b365a4a6d95424af6157ead774eff3
4040
args: [
4141
kfp_component.google.dataproc, delete_cluster,
4242
--project_id, {inputValue: project_id},

components/gcp/dataproc/delete_cluster/sample.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
"import kfp.components as comp\n",
7676
"\n",
7777
"dataproc_delete_cluster_op = comp.load_component_from_url(\n",
78-
" 'https://raw.githubusercontent.com/kubeflow/pipelines/0b07e456b1f319d8b7a7301274f55c00fda9f537/components/gcp/dataproc/delete_cluster/component.yaml')\n",
78+
" 'https://raw.githubusercontent.com/kubeflow/pipelines/48dd338c8ab328084633c51704cda77db79ac8c2/components/gcp/dataproc/delete_cluster/component.yaml')\n",
7979
"help(dataproc_delete_cluster_op)"
8080
]
8181
},

components/gcp/dataproc/submit_hadoop_job/README.md

+1-1

components/gcp/dataproc/submit_hadoop_job/component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ outputs:
7878
type: String
7979
implementation:
8080
container:
81-
image: gcr.io/ml-pipeline/ml-pipeline-gcp:fe639f41661d8e17fcda64ff8242127620b80ba0
81+
image: gcr.io/ml-pipeline/ml-pipeline-gcp:0517114dc2b365a4a6d95424af6157ead774eff3
8282
args: [
8383
kfp_component.google.dataproc, submit_hadoop_job,
8484
--project_id, {inputValue: project_id},

components/gcp/dataproc/submit_hadoop_job/sample.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
"import kfp.components as comp\n",
9191
"\n",
9292
"dataproc_submit_hadoop_job_op = comp.load_component_from_url(\n",
93-
" 'https://raw.githubusercontent.com/kubeflow/pipelines/0b07e456b1f319d8b7a7301274f55c00fda9f537/components/gcp/dataproc/submit_hadoop_job/component.yaml')\n",
93+
" 'https://raw.githubusercontent.com/kubeflow/pipelines/48dd338c8ab328084633c51704cda77db79ac8c2/components/gcp/dataproc/submit_hadoop_job/component.yaml')\n",
9494
"help(dataproc_submit_hadoop_job_op)"
9595
]
9696
},

components/gcp/dataproc/submit_hive_job/README.md

+1-1

components/gcp/dataproc/submit_hive_job/component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ outputs:
7373
type: String
7474
implementation:
7575
container:
76-
image: gcr.io/ml-pipeline/ml-pipeline-gcp:fe639f41661d8e17fcda64ff8242127620b80ba0
76+
image: gcr.io/ml-pipeline/ml-pipeline-gcp:0517114dc2b365a4a6d95424af6157ead774eff3
7777
args: [
7878
kfp_component.google.dataproc, submit_hive_job,
7979
--project_id, {inputValue: project_id},

components/gcp/dataproc/submit_hive_job/sample.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
"import kfp.components as comp\n",
8282
"\n",
8383
"dataproc_submit_hive_job_op = comp.load_component_from_url(\n",
84-
" 'https://raw.githubusercontent.com/kubeflow/pipelines/0b07e456b1f319d8b7a7301274f55c00fda9f537/components/gcp/dataproc/submit_hive_job/component.yaml')\n",
84+
" 'https://raw.githubusercontent.com/kubeflow/pipelines/48dd338c8ab328084633c51704cda77db79ac8c2/components/gcp/dataproc/submit_hive_job/component.yaml')\n",
8585
"help(dataproc_submit_hive_job_op)"
8686
]
8787
},

components/gcp/dataproc/submit_pig_job/README.md

+1-1

components/gcp/dataproc/submit_pig_job/component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ outputs:
7373
type: String
7474
implementation:
7575
container:
76-
image: gcr.io/ml-pipeline/ml-pipeline-gcp:fe639f41661d8e17fcda64ff8242127620b80ba0
76+
image: gcr.io/ml-pipeline/ml-pipeline-gcp:0517114dc2b365a4a6d95424af6157ead774eff3
7777
args: [
7878
kfp_component.google.dataproc, submit_pig_job,
7979
--project_id, {inputValue: project_id},

components/gcp/dataproc/submit_pig_job/sample.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@
8484
"import kfp.components as comp\n",
8585
"\n",
8686
"dataproc_submit_pig_job_op = comp.load_component_from_url(\n",
87-
" 'https://raw.githubusercontent.com/kubeflow/pipelines/0b07e456b1f319d8b7a7301274f55c00fda9f537/components/gcp/dataproc/submit_pig_job/component.yaml')\n",
87+
" 'https://raw.githubusercontent.com/kubeflow/pipelines/48dd338c8ab328084633c51704cda77db79ac8c2/components/gcp/dataproc/submit_pig_job/component.yaml')\n",
8888
"help(dataproc_submit_pig_job_op)"
8989
]
9090
},

components/gcp/dataproc/submit_pyspark_job/README.md

+1-1

components/gcp/dataproc/submit_pyspark_job/component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ outputs:
6767
type: String
6868
implementation:
6969
container:
70-
image: gcr.io/ml-pipeline/ml-pipeline-gcp:fe639f41661d8e17fcda64ff8242127620b80ba0
70+
image: gcr.io/ml-pipeline/ml-pipeline-gcp:0517114dc2b365a4a6d95424af6157ead774eff3
7171
args: [
7272
kfp_component.google.dataproc, submit_pyspark_job,
7373
--project_id, {inputValue: project_id},

components/gcp/dataproc/submit_pyspark_job/sample.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@
8686
"import kfp.components as comp\n",
8787
"\n",
8888
"dataproc_submit_pyspark_job_op = comp.load_component_from_url(\n",
89-
" 'https://raw.githubusercontent.com/kubeflow/pipelines/0b07e456b1f319d8b7a7301274f55c00fda9f537/components/gcp/dataproc/submit_pyspark_job/component.yaml')\n",
89+
" 'https://raw.githubusercontent.com/kubeflow/pipelines/48dd338c8ab328084633c51704cda77db79ac8c2/components/gcp/dataproc/submit_pyspark_job/component.yaml')\n",
9090
"help(dataproc_submit_pyspark_job_op)"
9191
]
9292
},

components/gcp/dataproc/submit_spark_job/README.md

+1-1

components/gcp/dataproc/submit_spark_job/component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ outputs:
7474
type: String
7575
implementation:
7676
container:
77-
image: gcr.io/ml-pipeline/ml-pipeline-gcp:fe639f41661d8e17fcda64ff8242127620b80ba0
77+
image: gcr.io/ml-pipeline/ml-pipeline-gcp:0517114dc2b365a4a6d95424af6157ead774eff3
7878
args: [
7979
kfp_component.google.dataproc, submit_spark_job,
8080
--project_id, {inputValue: project_id},

components/gcp/dataproc/submit_spark_job/sample.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
"import kfp.components as comp\n",
100100
"\n",
101101
"dataproc_submit_spark_job_op = comp.load_component_from_url(\n",
102-
" 'https://raw.githubusercontent.com/kubeflow/pipelines/0b07e456b1f319d8b7a7301274f55c00fda9f537/components/gcp/dataproc/submit_spark_job/component.yaml')\n",
102+
" 'https://raw.githubusercontent.com/kubeflow/pipelines/48dd338c8ab328084633c51704cda77db79ac8c2/components/gcp/dataproc/submit_spark_job/component.yaml')\n",
103103
"help(dataproc_submit_spark_job_op)"
104104
]
105105
},

components/gcp/dataproc/submit_sparksql_job/README.md

+1-1

components/gcp/dataproc/submit_sparksql_job/component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ outputs:
7373
type: String
7474
implementation:
7575
container:
76-
image: gcr.io/ml-pipeline/ml-pipeline-gcp:fe639f41661d8e17fcda64ff8242127620b80ba0
76+
image: gcr.io/ml-pipeline/ml-pipeline-gcp:0517114dc2b365a4a6d95424af6157ead774eff3
7777
args: [
7878
kfp_component.google.dataproc, submit_sparksql_job,
7979
--project_id, {inputValue: project_id},

components/gcp/dataproc/submit_sparksql_job/sample.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
"import kfp.components as comp\n",
8282
"\n",
8383
"dataproc_submit_sparksql_job_op = comp.load_component_from_url(\n",
84-
" 'https://raw.githubusercontent.com/kubeflow/pipelines/0b07e456b1f319d8b7a7301274f55c00fda9f537/components/gcp/dataproc/submit_sparksql_job/component.yaml')\n",
84+
" 'https://raw.githubusercontent.com/kubeflow/pipelines/48dd338c8ab328084633c51704cda77db79ac8c2/components/gcp/dataproc/submit_sparksql_job/component.yaml')\n",
8585
"help(dataproc_submit_sparksql_job_op)"
8686
]
8787
},

components/gcp/ml_engine/batch_predict/README.md

+1-1

components/gcp/ml_engine/batch_predict/component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ outputs:
6767
type: String
6868
implementation:
6969
container:
70-
image: gcr.io/ml-pipeline/ml-pipeline-gcp:fe639f41661d8e17fcda64ff8242127620b80ba0
70+
image: gcr.io/ml-pipeline/ml-pipeline-gcp:0517114dc2b365a4a6d95424af6157ead774eff3
7171
args: [
7272
kfp_component.google.ml_engine, batch_predict,
7373
--project_id, {inputValue: project_id},

components/gcp/ml_engine/batch_predict/sample.ipynb

+1-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@
112112
"import kfp.components as comp\n",
113113
"\n",
114114
"mlengine_batch_predict_op = comp.load_component_from_url(\n",
115-
" 'https://raw.githubusercontent.com/kubeflow/pipelines/0b07e456b1f319d8b7a7301274f55c00fda9f537/components/gcp/ml_engine/batch_predict/component.yaml')\n",
115+
" 'https://raw.githubusercontent.com/kubeflow/pipelines/48dd338c8ab328084633c51704cda77db79ac8c2/components/gcp/ml_engine/batch_predict/component.yaml')\n",
116116
"help(mlengine_batch_predict_op)"
117117
]
118118
},

components/gcp/ml_engine/deploy/README.md

+1-1

components/gcp/ml_engine/deploy/component.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ outputs:
9393
type: String
9494
implementation:
9595
container:
96-
image: gcr.io/ml-pipeline/ml-pipeline-gcp:fe639f41661d8e17fcda64ff8242127620b80ba0
96+
image: gcr.io/ml-pipeline/ml-pipeline-gcp:0517114dc2b365a4a6d95424af6157ead774eff3
9797
args: [
9898
kfp_component.google.ml_engine, deploy,
9999
--model_uri, {inputValue: model_uri},

0 commit comments

Comments
 (0)