how to access local kubernetes minikube dashboard remotely

前端 未结 9 471
离开以前
离开以前 2021-01-30 14:46

Kubernetes newbie (or rather basic networking) question: Installed single node minikube (0.23 release) on a ubuntu box running in my lan (on IP address 192.168

9条回答
  •  一生所求
    2021-01-30 15:17

    Slight variation on the approach above.

    I have an http web service with NodePort 30003. I make it available on port 80 externally by running:

    sudo ssh -v -i ~/.ssh/id_rsa -N -L 0.0.0.0:80:localhost:30003 ${USER}@$(hostname)

提交回复
热议问题