怎么打开 istio 的应用grafana和kiali 的 dashboard
1. kubectl get pods -n istio-system -w kubectl get service -n istio-system -w 2. 要把访问 Port 映射出去一次: kubectl port-forward --address 0.0.0.0 {pod-name} 20001 -n istio-system 把kiali 映射出去一次: kubectl port-forward --address 0.0.0.0 kiali-fb5f485fb-2jczp 20001 -n istio-system 把grafana 映射出去一次: kubectl port-forward --address 0.0.0.0 grafana-6c8f45499-9k6n6 3000 -n istio-system 来源: https://www.cnblogs.com/xiaoyongyang/p/11959715.html