-
Notifications
You must be signed in to change notification settings - Fork 4.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
waiting for kube-proxy to be up for configmap update: timed out waiting for the condition #3354
Comments
have you try below? |
I tried them many times, but the same result |
try this: minikube logs | grep image if you see "failed pulling image" in the log, then you should use proxy,
Step Onestart minikube VM minikube start Step Twoopen a new terminal and ssh into the minikube VM minikube ssh Step Threeacquire the IP address of minikube VM, the "eth0" Network Adapter is what we need ifconfig Step Fourstop the running minikube VM by press Ctrl+C in the original terminal, then run minikube stop Step Fiveassume the above IP is 192.168.99.xxx, port is up to your proxy client configure minikube start --docker-env HTTP_PROXY=http://192.168.99.1:8118 --docker-env HTTPS_PROXY=http://192.168.99.1:8118 --docker-env NO_PROXY=127.0.0.1/24 According some other issues, the latest version minikube don't work well with the above script Here I offer my ultimate solution ! Just run Step One to Step Three's scripts, then create dir sudo mkdir /etc/systemd/system/docker.service.d
sudo vi /etc/systemd/system/docker.service.d/https-proxy.conf type this content into file
then flush changes and restart Docker sudo systemctl daemon-reload
sudo systemctl restart docker finally exit the ssh session and re-create the minikube VM exit
minikube delete
minikube start |
with latest codes from master, I cannot start cluster successfully as well with proxy parameters, I finally replaced all image urls with reachable ones then can start minikube successfully. |
There's a bad sign that this machine has connectivity issues, such as a misconfigured proxy:
#3145 has the longer term feature fix for detecting these issues. |
i had the same error message in my recent trying. When i removed my HTTP_PROXY and NO_PROXY to test and the |
Commenting here too: I got a similar error state by having ran |
let me try |
I fixed the problem, I am in China, so I can not connect some website inside the virtual box,
|
Run |
I was getting this error because first I run |
this works for me. |
I am a new in using minikube
I installed minikube in Macos 10.14 depended brew
and I installed virtuabox and docker
when I run
minikube start
, I waited for a very long time.I got these
how can I fix them?
my version of minikube is
minikube version: v0.29.0
thanks
The text was updated successfully, but these errors were encountered: