-
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
Option to skip kubeadm preflight checks #3320
Comments
This sounds like a good idea for advanced usage, since the issue is going to be around for a while. |
It's indeed related to #3323: the fix (kubernetes/kubernetes#71001) will probably only be included in kubernetes >= 1.13: since kubeadm provides a facility to ignore preflight errors there is no strict need to backport the fix to earlier kubernetes versions. |
Probably only valid for the "none" driver, since the various Note that there are already quite a long list of "supported" ignores, such as that pesky old swap partition... |
FWIW, I'd be happy to review any PR which introduces this option. |
@tstromberg your wishes came true. here is the PR: #3879 It actually allows one to pass generic commands to kubeadm so this is what has to be executed:
|
For anyone running into issues with @marcosdiez 's solution, there is a small typo. You need to include an
|
This was fixed a while back: |
FEATURE REQUEST
Since a new docker version has been released and is not validated, the preflight checks raise an error and prevent minikube to start. This would be nice if we could add a custom
--ignore-preflight-errors
to kubeadm, currently hardcoded here:minikube/pkg/minikube/constants/constants.go
Line 149 in ae9f4b2
Also eventually override or remove the default ones depending on the environnement.
The text was updated successfully, but these errors were encountered: