I'm fairly new to K8. Using k3d/helm, I installed an application on our on-prem ssh server. I did port forward on 8080. I'm able to do "curl localhost:8080" when I'm inside the server. Could you plz guide me how can I access this application from my local machine? I tried using the private ip/hostname of the server but didn't work. I don't want to expose the app to internet but only access it over company intranet.
Thanks
<k3d cluster create test
helm install XXXXXX
sudo kubectl -n test port-forward service/api-gateway-nginx 8080:80>
Should be able to access the application from outside the VM