kubectl port-forward k8s 打开端口到本地
来源:原创
时间:2021-03-17
作者:脚本小站
分类:云原生
kubectl port-forward:
打开本地代理:端口为 本地 : 远程
$kubectl -n monitoring port-forward service/node-exporter 9101:9100 Forwarding from 127.0.0.1:9101 -> 9100 Forwarding from [::1]:9101 -> 9100
在服务端安装如下包:
yum install socat -y
然后在本地就可以访问了:
curl localhost:9101/metrics
kubefwd:
批量端口转发到本地:
https://github.com/txn2/kubefwd
telepresence:
在本地运行service-middle:
https://github.com/telepresenceio/telepresence