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
The Go runtime only has a limited DNS resolver that does not support e.g. split-DNS configuration with a corporate VPN setup.
This doesn't matter much on Linux, where things are handled by 127.0.0.53 (systemd-resolved), but on macOS (and I think Windows) using the native resolver would be much preferable.
The text was updated successfully, but these errors were encountered:
Wouldn't that make the final binary less portable?
Sorry, was just on vacation most of August. 😄
I think portability is only an issue on Linux; I would expect things to just work on macOS and Windows, even when you build with CGO_ENABLED=1. Given that this isn't needed on systems using systemd-resolved I think it makes sense to compile the Linux version with CGO_ENABLED=0 as before.
We can build our own binaries for Rancher Desktop if you want to keep things as they are, but it would be easier for us if we can just download bits from your releases page...
The Go runtime only has a limited DNS resolver that does not support e.g. split-DNS configuration with a corporate VPN setup.
This doesn't matter much on Linux, where things are handled by
127.0.0.53
(systemd-resolved
), but on macOS (and I think Windows) using the native resolver would be much preferable.The text was updated successfully, but these errors were encountered: