-
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
Unable to plug-in default values to Pipeline #618
Comments
Which DSL Compiler version did you install? |
The change to support direct values were checked in at 0b7120c#diff-618bb1fbca23caf0b3edc26f1b38caa8. Latest release of kfp SDK should have it. https://github.com/kubeflow/pipelines/releases Make sure you install it with "--upgrade" flag. |
Thank you for the reply. |
Please try
This error was removed from the code base several months ago. |
Thanks for the reply :) That worked. I mixed up my environments. |
/assign @Ark-kun |
I tried creating a custom pipeline but I'm ran into this error while compiling it.
ValueError: Default values of argument has to be type dsl.PipelineParam or its child.
A workaround was to create a PipelineParam and then pass it.
project = dsl.PipelineParam(name='run-step-parameter')
But I'm unable to set default values to the parameter.
The default examples from here don't compile as well. I'm getting the same error.
The text was updated successfully, but these errors were encountered: