-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
unexpected parameter name conversion by DSL #205
Comments
Do we really have a snippet like that? AFAIK, right now all pipeline parameters look like this: I wonder what happens with the parameter names in https://github.com/kubeflow/pipelines/pull/110/files I agree that this needs to be handled in a way that's easy for the user. Quite a good chunk of my python component support code deals with naming. |
I think we already support raw parameter.
|
I confirm that this issue still exists ( The actual regexp is Update: Argo has not released the underscore fix yet =( argoproj/argo-workflows#1048 |
The naming sanitization is necessary to convert the python names to argo compatible names. |
@Ark-kun is argo supporting the underscore in 2.3, the current version pipeline deploys? |
@Ark-kun gently tap. |
/cc @gaoning777 Unfortunately, many of our customers probably have older versions. Their experience will be broken if they try to run pipelines with inputs/outputs containing underscores. |
Fixed by #466 |
* update the project status * kfp-tekton-diagram * update the architecture diagram * update arch diag
Here is snippet of the pipeline definition
And when I submit a run I need to do
Here working_dir is converted to working-dir which is somewhat unexpected. I have to look into the generated yaml to find out what it actual converted to.
The text was updated successfully, but these errors were encountered: