pixel-point / kube-forwarder

Easy to use Kubernetes port forwarding manager
https://kube-forwarder.pixelpoint.io/
MIT License
1.08k stars 183 forks source link

[Enhancement-request] Add infinite retry to avoid connection drops #92

Open gaurav9822 opened 3 years ago

gaurav9822 commented 3 years ago

For instance, this is done manually with the following command

while true;do kubectl port-forward <pod> 8080:8080; done;