After a reboot (I think?) I’m no longer able to access any apps that are using node port forwarding. Apps that are on the host network are fine.
I can access them via the internal (172.16…) IP. For instance, an app with an IP 172.16.14.95 is listening on port 8081. I can curl
it both in the pod shell and on the host, but I can’t access it via server_ip:40031 or localhost:40031 (which is the forwaded port that I specified in the options). It just errors out with a connection refused.
How do I fix it?
Edit: If I forward a port manually, it works:
admin@...[~]$ sudo k3s kubectl port-forward -n ix-immich immich-556bf64fb6-z8wxk 30041:30041 &
[1] 119726
admin@...[~]$ Forwarding from 127.0.0.1:30041 -> 30041
Forwarding from [::1]:30041 -> 30041
curl localhost:30041
Handling connection for 30041
<!doctype html>
...
Edit #2: After 20 minutes I come back to it, and all of the ports are working -_-