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
helm version --short
Hey,
I get this output with helm installed on Fedora using dnf install helm:
helm
dnf install helm
[ozgur@nobara-pc fluvio]$ helm version --short v3.11
And when I run flvd cluster check I get:
flvd cluster check
📝 Checking Helm - 2023-03-23T10:37:32.969384Z DEBUG fluvio_command: Executing> helm version Could not parse Version
Seems like this might be cause by semver not parsing v3.11.
semver
v3.11
Maybe this should be handled before calling semver::Version::parse?
semver::Version::parse
The text was updated successfully, but these errors were encountered:
I see that it is already handled here: https://github.com/infinyon/fluvio-helm/blob/fec48a46c5181ca5a1f1ad56e6a2b3dadfec68a8/src/lib.rs#L365
It seems to fail parsing because there is no patch version
Sorry, something went wrong.
Installing helm like this fixed the issue.
Re-opening this since maybe it would be good to handle helm version not returning patch number.
helm version
Yes
Stale issue message
No branches or pull requests
Hey,
I get this output with
helm
installed on Fedora usingdnf install helm
:And when I run
flvd cluster check
I get:Seems like this might be cause by
semver
not parsingv3.11
.Maybe this should be handled before calling
semver::Version::parse
?The text was updated successfully, but these errors were encountered: