Kubernetes question about newcomers (or rather, basic): A single node mini-cube (release 0.23) is installed in an ubuntu box running in my language (at IP address 192.168.0.20) using a virtual box.
Minikube launch command also completed successfully
minikube start Starting local Kubernetes v1.8.0 cluster... Starting VM... Getting VM IP address... Moving files into cluster... Setting up certs... Connecting to cluster... Setting up kubeconfig... Starting cluster components... Kubectl is now configured to use the cluster.
The minikube toolbar is also a success. (works on 192.168.99.100{0000)
what i want to do is access the minikube toolbar from my macbook (runs on 192.168.0.11) on the same local network.
I also want to access the same minikube dashboard from the Internet.
To access the local network: Now, from what I understand, I use virtualbox (the default vm option), I can change the network type (to NAT with port forwarding) using the vboxnet command
VBoxManage modifyvm "VM name" --natpf1 "guestssh,tcp,,2222,,22"
as indicated here
In my case it will be something like this
VBoxManage modifyvm "VM name" --natpf1 "guesthttp,http,,30000,,8080"
Am I thinking of the correct lines here?
Also, for remote access to the same panel address of the mini-switch, I can configure the no-ip.com service as a service. They asked to install their utility in the linux box, as well as configure port forwarding in the router settings, which will be redirected from the host port to the guest port. It's right? Did I miss something?