You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Originally posted by dangmai December 30, 2024
Using this mise.toml:
[tools]
kubectl = '1.32.0'
mise will fail to install kubectl on Windows with the following message:
mise ERROR failed to install aqua:kubernetes/[email protected]
mise ERROR HTTP status client error (404 Not Found) for url (https://cdn.dl.k8s.io/1.32.0/bin/windows/amd64/kubectl) tl) 4/kubectl)
mise ERROR HTTP status client error (404 Not Found) for url (https://cdn.dl.k8s.io/release/v1.32.0/bin/windows/amd6d64/kubectl)
mise ERROR Run with --verbose or MISE_VERBOSE=1 for more information
This is because aqua automatically adds the .exe extension on Windows platform, while mise does not. There was a PR on Aqua's repository to make the .exe extension explicit in the URL, but the maintainer has closed it: aquaproj/aqua-registry#30398 (with a follow up note for mise users here).
I think mise logic should follow aqua logic when determining the URL to use while downloading dependencies.
The text was updated successfully, but these errors were encountered:
Discussed in #3885
Originally posted by dangmai December 30, 2024
Using this
mise.toml
:mise
will fail to installkubectl
on Windows with the following message:This is because
aqua
automatically adds the.exe
extension on Windows platform, whilemise
does not. There was a PR on Aqua's repository to make the.exe
extension explicit in the URL, but the maintainer has closed it: aquaproj/aqua-registry#30398 (with a follow up note formise
users here).I think
mise
logic should followaqua
logic when determining the URL to use while downloading dependencies.The text was updated successfully, but these errors were encountered: