delightful-kitchen-63100
06/24/2025, 7:30 PMping rancher.rd.localhost
also, try to telnet the IP/port from the agent node to the Rancher`s ingress IP?
telnet <ingress IP> 443
See if the IP is being resolved by ping and the packages are being delivered, if you don`t know how to read the result of ping, is expected something like this:
ping ip-xxx.sa-east-1.compute.internal
PING ip-xxx.sa-east-1.compute.internal (xxx) 56(84) bytes of data.
64 bytes from ip-xxx.sa-east-1.compute.internal (xxx): icmp_seq=1 ttl=64 time=0.031 ms
64 bytes from ip-xxx.sa-east-1.compute.internal (xxx): icmp_seq=2 ttl=64 time=0.042 ms
^C
--- ip-xxx.sa-east-1.compute.internal ping statistics ---
2 packets transmitted, 2 received, 0% packet loss, time 1035ms
rtt min/avg/max/mdev = 0.031/0.036/0.042/0.005 ms
adamant-traffic-5372
06/25/2025, 3:12 PMnslookup
was resolving the correct IP address; curl
apparently still was not. After using the IP address of the host instead of the name, everything worked. Since this is a local dev deployment, I'm satisfied with using IPs instead of DNS.
Thanks for the insight.adamant-traffic-5372
06/25/2025, 3:15 PMcurl
. So it must be the version or flavor of curl
that is used in the Rancher Agent.adamant-traffic-5372
06/25/2025, 3:16 PMoptions ndots:5
in the /etc/resolv.conf
delightful-kitchen-63100
06/25/2025, 4:13 PM