端口转发是 kubectl 的一个子命令,通过 kubectl port-forward
可以将本地端口转发到指定的 Pod。
可以将本地端口转发到指定 Pod 的端口。
# Listen on ports 5000 and 6000 locally, forwarding data to/from ports 5000 and 6000 in the podkubectl port-forward mypod 5000 6000# Listen on port 8888 locally, forwarding to 5000 in the podkubectl port-forward mypod 8888:5000# Listen on a random port locally, forwarding to 5000 in the podkubectl port-forward mypod :5000# Listen on a random port locally, forwarding to 5000 in the podkubectl port-forward mypod 0:5000
也可以将本地端口转发到服务、复制控制器或者部署的端口。
# Forward to deploymentkubectl port-forward deployment/redis-master 6379:6379# Forward to replicaSetkubectl port-forward rs/redis-master 6379:6379# Forward to servicekubectl port-forward svc/redis-master 6379:6379