We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Version: 1.0.0-nightly.202005130003
Problem: On Windows, the whole file path passed to kamel run is used as the integration name.
kamel run
C:\ > kamel run git\camel-k\examples\Sample.java integration "gitcamel-kexamplessample" created
On Linux, this is not the case.
Workaround: Using a / instead of a \ works around the issue.
C:\ > kamel run git\camel-k\examples/Sample.java integration "sample" created
Possible solution: Use filepath.Base(..) instead of path.Base(..) in https://github.com/apache/camel-k/blob/1.0.0-nightly.202005130003/pkg/util/kubernetes/sanitize.go#L33 .
filepath.Base(..)
path.Base(..)
The text was updated successfully, but these errors were encountered:
Yeah, we should try to fix it before next release.
Sorry, something went wrong.
oscerd
Successfully merging a pull request may close this issue.
Version: 1.0.0-nightly.202005130003
Problem: On Windows, the whole file path passed to
kamel run
is used as the integration name.On Linux, this is not the case.
Workaround: Using a / instead of a \ works around the issue.
Possible solution: Use
filepath.Base(..)
instead ofpath.Base(..)
in https://github.com/apache/camel-k/blob/1.0.0-nightly.202005130003/pkg/util/kubernetes/sanitize.go#L33 .The text was updated successfully, but these errors were encountered: