how to undo a kubectl port-forward

If I forwarded a port using

kubectl port-forward mypod 9000:9000

How can I undo that so that I can bind port 9000 with another program?
Additionally, how can I test to see what ports are forwarded?


Solution 1:

The port is only forwarded while the kubectl process is running, so you can just kill the kubectl process that's forwarding the port. In most cases that'll just mean pressing CTRL+C in the terminal where the port-forward command is running.

Solution 2:

If it was launch in the background you can use the fg command to access it and then use ctrl + C

Solution 3:

$ ps -ef|grep port-forward

wyyl1      2013886       1  0 02:18 ?        00:00:10 kubectl port-forward svc/prometheus 9090:9090
wyyl1      2253978 2178606  0 07:58 pts/2    00:00:00 grep --color=auto port-forward

$ kill -9 2013886

Solution 4:

If it runs in background, consider using pkill to kill processes by their names. Example:

pkill -f "port-forward"