-
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
Running minikube on outdated and unsupported platforms #10845
Comments
I dont see why not ! |
What changes are you suggesting to minikube exactly? |
My initial idea was to build a minikube binary for these, but that also assumes it has access to another machine for the cluster.
So it might need some improvements to the ssh driver, and it would also need splitting of architecture between host and machine. Basically I want to stretch the definition of "local Kubernetes", without changing the main target or introduce any security concerns.
The end goal is to bring it to more platforms, you might not have access to one big computer (or VM) - but maybe two smaller ? Will assume that the user would want access to a regular desktop environment on the first machine (2 vCPU, 2G RAM) So instead of doing one machine with 4 vCPU and 4G RAM (in total), it would be sufficient with two connected machines. |
I believe the pre-requisite for this is, to have our cached fixed to add CPU archs this seems like a feature to allow running minikube with a different arch than the host. this will unlock private clouds |
Issues go stale after 90d of inactivity. If this issue is safe to close now please do so with Send feedback to sig-contributor-experience at kubernetes/community. |
The Kubernetes project currently lacks enough active contributors to adequately respond to all issues and PRs. This bot triages issues and PRs according to the following rules:
You can:
Please send feedback to sig-contributor-experience at kubernetes/community. /lifecycle rotten |
I am going to close this issue for now till we have more interest from the users |
Running minikube requires
amd64
for x86, and at least anarmv7
(but preferrablyarm64
) for ARM...It also requires 2 GB of RAM and 20 GB of hard disk, which might not be available on the local machine.
But we could still offer
minikube start
and the kubernetes experience on these machines, for learning ?Assuming that there is another computer available to run the actual cluster (but not the desktop interface)
#4733With the possibility of loading and building images in the cluster, and also running kubernetes client there*,
the lack of
docker
andkubectl
is not really blocking. The client would only be used for editing files etc.* #10843
This would allow running minikube on
i586
i686
andarmv5
armv6
, towards anamd64
orarm64
VM.Ultimately, we also want to be able to use a different architecture for the host and the cluster (different story*)
* #9593
GOARCH=386
GOARCH=arm GOARM=5
The text was updated successfully, but these errors were encountered: