Reset Minikube on MacOS (VirtualBox VM) to the initial IP

In case your Minikube does not get the inital IP 192.168.99.100 assigned from the VirtualBox VM manager but it increases on next minikube start to 192.168.99.101 or higher, you can reset to the initial IP as follows:

Assuming: Mac OS, VirtualBox VM

$ minikube ip
192.168.99.110

$ minikube stop
$ rm ~/Library/VirtualBox/HostInterfaceNetworking-vboxnet*
$ minikube start

$ minikube ip
192.168.99.100