Does Minikube with Docker Driver supports Ingress on Mac or Windows?
I followed as it is steps listed in the documentation.
But, it's not working
I tried minikube tunnel
as well, but it's not working. Can someone help me with this please?
Does Minikube with Docker Driver supports Ingress on Mac or Windows?
I followed as it is steps listed in the documentation.
But, it's not working
I tried minikube tunnel
as well, but it's not working. Can someone help me with this please?
Ingress has some conflicts to work with Docker on Windows10 .So the workaround here can be installing Virtualbox.
On Windows:
1.Install VirtualBox
2.Uncheck the Virtual Machine Platform and Windows Hypervisor Platform options from Control Panel -> Programs -> Turn Windows Features on and off (under Programs and Features) and then click ok. Restart your computer if prompted to.
3.Now, execute the following commands in a new cmd
minikube delete
minikube start --driver=virtualbox
if minikube start --driver=virtualbox
doesn't work, then use minikube start --driver=virtualbox --no-vtx-check
.
Also checkout the Github issue and stackoverflow link for more information.