Skip to content

Commit

Permalink
fix(components): Add explicit image tag and fix variable references. (k…
Browse files Browse the repository at this point in the history
…ubeflow#4298)

* Add explicit image tag

* fix variable references
  • Loading branch information
chensun authored and Jeffwan committed Dec 9, 2020
1 parent b52ef85 commit 00a6c99
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion components/gcp/bigquery/query/sample.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@
"metadata": {},
"outputs": [],
"source": [
"!gsutil cat OUTPUT_PATH"
"!gsutil cat $OUTPUT_PATH"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion components/gcp/bigquery/query/to_CSV/component.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ outputs:
type: CSV
implementation:
container:
image: gcr.io/ml-pipeline/ml-pipeline-gcp
image: gcr.io/ml-pipeline/ml-pipeline-gcp:1.0.0
args: [
--ui_metadata_path, {outputPath: MLPipeline UI metadata},
kfp_component.google.bigquery, query,
Expand Down
4 changes: 2 additions & 2 deletions components/gcp/bigquery/query/to_gcs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ run_result = client.run_pipeline(experiment.id, run_name, pipeline_filename, arg


```python
!gsutil cat OUTPUT_PATH
!gsutil cat $OUTPUT_PATH
```

## References
Expand All @@ -185,4 +185,4 @@ run_result = client.run_pipeline(experiment.id, run_name, pipeline_filename, arg
* [BigQuery query REST API](https://cloud.google.com/bigquery/docs/reference/rest/v2/jobs/query)

## License
By deploying or using this software you agree to comply with the [AI Hub Terms of Service](https://aihub.cloud.google.com/u/0/aihub-tos) and the [Google APIs Terms of Service](https://developers.google.com/terms/). To the extent of a direct conflict of terms, the AI Hub Terms of Service will control.
By deploying or using this software you agree to comply with the [AI Hub Terms of Service](https://aihub.cloud.google.com/u/0/aihub-tos) and the [Google APIs Terms of Service](https://developers.google.com/terms/). To the extent of a direct conflict of terms, the AI Hub Terms of Service will control.
2 changes: 1 addition & 1 deletion components/gcp/bigquery/query/to_gcs/component.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ outputs:
type: UI metadata
implementation:
container:
image: gcr.io/ml-pipeline/ml-pipeline-gcp
image: gcr.io/ml-pipeline/ml-pipeline-gcp:1.0.0
args: [
--ui_metadata_path, {outputPath: MLPipeline UI metadata},
kfp_component.google.bigquery, query,
Expand Down
2 changes: 1 addition & 1 deletion components/gcp/bigquery/query/to_table/component.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ outputs:
type: UI metadata
implementation:
container:
image: gcr.io/ml-pipeline/ml-pipeline-gcp
image: gcr.io/ml-pipeline/ml-pipeline-gcp:1.0.0
args: [
--ui_metadata_path, {outputPath: MLPipeline UI metadata},
kfp_component.google.bigquery, query,
Expand Down

0 comments on commit 00a6c99

Please sign in to comment.