-
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
--extra-config still fails to start with v0.23 #2184
Comments
The extra config flag works differently for the kubeadm bootstrapper. |
Ah, but then I still don't see how I should format the |
@Morriz It should take the form of whatever flag you would pass into the apiserver. In this case
|
Thanks. Is there any straightforward documentation about this? I couldn't figure it out from that link only...
|
The documentation that I linked is the only documentation available. I'll be adding more documentation soon from a presentation I'm putting together about minikube. This will also be a lot clearer once we deprecate localkube, which has the old behavior for the --extra-config flag. I agree its pretty confusing that the flag has different behavior and accepts different values based on the value of another flag, the bootstrapper flag. A possibly easier way to think about the configuration: Localkube uses reflection to set the key value pairs on the structs themselves. |
Ok, can I reopen this here? I still get errors with:
the error being:
|
Proxy isn't configurable with the kubeadm bootstrapper yet.
In the meantime, its not a great solution but you can try to modify the proxy args after it starts up and redeploy. |
hmmm, I am spending a lot of time trying to get calico to work on minikube...maybe you can point me to some info? I can't seem to get it to work with localkube neither :| |
I was also trying to get calico to work on minikube and ran into the same error reported by @Morriz. I was trying to run: minikube start -v=10 \
--vm-driver=hyperkit \
--network-plugin=cni \
--host-only-cidr=172.17.17.1/24 \
--extra-config=kubelet.network-plugin=cni \
--extra-config=kubelet.PodCIDR=192.168.0.0/16 \
--extra-config=proxy.ClusterCIDR=192.168.0.0/16 \
--extra-config=controller-manager.ClusterCIDR=192.168.0.0/16 Any idea how to get past this error so that I can get Clalico running on Minikube?
|
@r2d4 is proxy config support through kubeadm scheduled to be implemented?
In the meantime, here's the only workaround I've found.
@Morriz did you find an interim solution? |
After having read (closed) issue #2064, I want to reopen the same issue again here, as this still fails for me if I start with:
The boot script hangs and the api-server does not start correctly. I see
:8443: getsockopt: connection refused
errors in the journal.If I leave the
--extra-config
part out it boots correctly, but I can't use my flags ;pI'm on OSX 10.12.6
The text was updated successfully, but these errors were encountered: