Skip to content

Commit

Permalink
Support extra arguments in kfctl_e2e_workflow.py (kubeflow#4335)
Browse files Browse the repository at this point in the history
* Support extra arguments in kfctl_e2e_workflow.py

* See kubeflow/testing#489 we want to support having run_e2e_workflow.py
  pass extra arguments to the workflow. To do that we need to update the
  test to first accept unknown arguments so we don't break once
  run_e2e_workflow.py starts adding extra arguments.

* Fix.
  • Loading branch information
jlewi authored and k8s-ci-robot committed Oct 18, 2019
1 parent be9cef8 commit 7d0afa8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion py/kubeflow/kubeflow/ci/kfctl_e2e_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ def __init__(self, name=None, namespace=None,
test_endpoint=False,
use_basic_auth=False,
build_and_apply=False,
kf_app_name=None, delete_kf=True,):
kf_app_name=None, delete_kf=True,
**kwargs):
"""Initialize a builder.
Args:
Expand Down

0 comments on commit 7d0afa8

Please sign in to comment.