Skip to content

Commit

Permalink
Add.
Browse files Browse the repository at this point in the history
  • Loading branch information
jlewi committed Sep 20, 2019
1 parent 3db2257 commit 488fdaa
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions py/kubeflow/kubeflow/ci/kfctl_e2e_workflow.py
Original file line number Diff line number Diff line change
Expand Up @@ -624,17 +624,14 @@ def build(self):

return self.workflow

def create_workflow(name=None, namespace=None, use_basic_auth=False,
test_endpoint=False, bucket="kubeflow-ci_temp",
kf_app_name=None, delete_kf=True): # pylint: disable=too-many-statements
def create_workflow(**kwargs): # pylint: disable=too-many-statements
"""Create workflow returns an Argo workflow to test kfctl upgrades.
Args:
name: Name to give to the workflow. This can also be used to name things
associated with the workflow.
"""

builder = Builder(name=name, namespace=namespace, bucket=bucket,
kf_app_name=kf_app_name, delete_kf=delete_kf)
builder = Builder(**kwargs)

return builder.build()

0 comments on commit 488fdaa

Please sign in to comment.