Hello, guys. I'm using Rancher Desktop on a fresh ...
# rancher-desktop
r
Hello, guys. I'm using Rancher Desktop on a fresh install of Zorin OS 17 (Ubuntu-based distribution). I'm facing an intermittent issue trying to resolve cluster DNS resources defined using Ingress. Sometimes it works, sometimes not. Is there any special config I can do to RD or host OS to make it work (even editing /etc/hosts)? Some friends using Mac or Windows aren't facing the same issue. Dynamic port-forwarding works, but I need a static reference to configure a dev environment and make it persistent.
An answer for those with the same issue: it seems that Traefik was not able to bind to privileged ports on my Linux distribution. As I'm using Rancher Desktop only for dev purposes, I'm ok to let applications bind privileged ports, so I did as posted here: https://superuser.com/a/1482188/1963730
Copy code
echo 'net.ipv4.ip_unprivileged_port_start=0' > /etc/sysctl.d/50-unprivileged-ports.conf
sysctl --system
To allow binding these ports and now everything is working.