-
Notifications
You must be signed in to change notification settings - Fork 22
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
Start Windows CRC executable path with upper case drive-letter #178
Conversation
Does this affect functionality? |
I think I saw some mentions of lower case/upper case drive letters causing issues in relation with crc-org/crc#3837 and similar issues we had recently. |
This comment was marked as outdated.
This comment was marked as outdated.
right now it seems to work with Podman Desktop 1.4.0 and CRC 2.26.0. (Just testing locally) |
Please change format, as we do not make use of Make sure to provide a description as |
@gbraad Fixed. I also pushed better commit message. |
not the |
We never refer to just a github issue, as that means a developer would ALSO have to open a browser to understand what the change is about. On the command line that does not work well, like during a bisect. |
Simple example when it concerns a fixed bug: crc-org/crc@45831b0 or more detailed: crc-org/crc@f76e4b9 We haven't been doing this in the repo when it concerns features, but since this is an obscure issue some details are appreciated. |
- Due to a strict check of a `hidden_daemon.ps1` file content during `crc setup` on `crc` side there is an error when initializing the CRC in podman desktop. This change should align the default windows `crc` executable location with this strict check - fixes crc-org#175 Signed-off-by: Ondrej Dockal <[email protected]>
Ok, getting closer now? |
So, wouldn't it be smarter to prevent the strict check in |
I don't think the strict check should be relaxed, (mostly because its using a generic I tested this and it fixes the issue #175, it seems golang |
Even though I strongly agree with this. We would have to wait until next CRC version release to get this fixed. Right now any CRC extension cannot be used on Windows at all with crc 2.26.0, if I am not mistaken, so it would be nice to have this fixed by latest crc extension (if released with this patch) and have all working together - podman desktop, extension and crc. |
I have started working on a fix on CRC's side, anjannath/crc@fda052d |
we had a discussion about this on slack, and we decided since, this is going to fix the issue for current release of CRC as well as newer releases of CRC, to merge this PR and discuss further improvements to the preflight check on CRC side (to make it independent of whether the path starts with a lower case or upper case drive letter) |
@anjannath Absolutely! thank you. |
@odockal welcome, fyi, we are not yet able to publish the extension image with this change to the official |
@anjannath no problem. Let me know once it is out so I can test it. |
@anjannath If I tried to install latest from |
Due to a strict check of a
hidden_daemon.ps1
file content duringcrc setup
oncrc
side there is an error when initializing the CRC in podman desktop. This PR should align the default windowscrc
executable location with this strict check.Fixes #175