-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Sanitize inputs from SDK when submitting run. #466
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/lgtm
/approve |
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: qimingj The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
1 similar comment
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: qimingj The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
…low repository, I ran into problems with the import failing because the module kubeflow.kubeflow could not be found (kubeflow#466) The issue is tracked kubeflow#467 Essentially dynamically adding the kubeflow/kubeflow/py (i.e. from inside python) didn't work Could be an issue with namespace packaging I spent hours trying to make dynamically importing the modules work but I couldn't figure it out Setting python path before invoking python appears to work. So as a workaround we have run_e2e_workflow.py shell out to e2e_tool which writes the workflow to a file. run_e2e_workflow.py then loads it from the file. Create a K8s job to run run_e2e_workflow.py to simulate what happens under prow Related to kubeflow/kubeflow#3035 migrate e2e tests off ksonnet
Send the e2e-test results to slack channel. The message also encloses the link to details page of the pipeline run.
This change is