Skip to content

Commit

Permalink
Fix bug in notebook task (kubeflow#728)
Browse files Browse the repository at this point in the history
* The script to run a notebook is missing a trailing slash to indicate
  a continued command.

* Related to GoogleCloudPlatform/kubeflow-distribution#78
  • Loading branch information
jlewi authored Jul 11, 2020
1 parent b20d0eb commit abce371
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ spec:
--notebook_path=/src/notebook-repo/$(inputs.params.notebook-path) \
--test-target-name=$(inputs.params.test-target-name) \
--artifacts-gcs=$(inputs.params.notebook-output) \
--image_file=$(inputs.params.artifacts-gcs)/image.yaml
--image_file=$(inputs.params.artifacts-gcs)/image.yaml \
--namespace=$(inputs.params.nb-namespace)
echo test finished
workingDir: /srcCache/kubeflow/testing/py/kubeflow/testing/notebook_tests
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ spec:
--notebook_path=/src/notebook-repo/$(inputs.params.notebook-path) \
--test-target-name=$(inputs.params.test-target-name) \
--artifacts-gcs=$(inputs.params.notebook-output) \
--image_file=$(inputs.params.artifacts-gcs)/image.yaml
--image_file=$(inputs.params.artifacts-gcs)/image.yaml \
--namespace=$(inputs.params.nb-namespace)
echo test finished
workingDir: /srcCache/kubeflow/testing/py/kubeflow/testing/notebook_tests
Expand Down
2 changes: 1 addition & 1 deletion tekton/templates/tasks/notebook-test-task.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ spec:
--notebook_path=/src/notebook-repo/$(inputs.params.notebook-path) \
--test-target-name=$(inputs.params.test-target-name) \
--artifacts-gcs=$(inputs.params.notebook-output) \
--image_file=$(inputs.params.artifacts-gcs)/image.yaml
--image_file=$(inputs.params.artifacts-gcs)/image.yaml \
--namespace=$(inputs.params.nb-namespace)
echo test finished
workingDir: /srcCache/kubeflow/testing/py/kubeflow/testing/notebook_tests
Expand Down

0 comments on commit abce371

Please sign in to comment.