diff --git a/site/content/en/docs/contrib/building/binaries.md b/site/content/en/docs/contrib/building/binaries.md index f13a5472b91995e5ebc57bda3e6b5add84ddbc6f..ade5f54f9943c4b2e7d3e93daae4fac8d2a6aeaa 100644 --- a/site/content/en/docs/contrib/building/binaries.md +++ b/site/content/en/docs/contrib/building/binaries.md @@ -64,7 +64,9 @@ See [Building the minikube ISO](../iso) We publish CI builds of minikube, built at every Pull Request. Builds are available at (substitute in the relevant PR number): - +- - +- - We also publish CI builds of minikube-iso, built at every Pull Request that touches deploy/iso/minikube-iso. Builds are available at: diff --git a/site/content/en/docs/drivers/docker.md b/site/content/en/docs/drivers/docker.md index 041763be6888f2fac8b6b2eceabdf001332bbc22..1300cd086715c07242b6e2a8c320a3fccf5f6b2b 100644 --- a/site/content/en/docs/drivers/docker.md +++ b/site/content/en/docs/drivers/docker.md @@ -23,8 +23,6 @@ The Docker driver allows you to install Kubernetes into an existing Docker insta - [userns-remap](https://docs.docker.com/engine/security/userns-remap/) - [rootless](https://docs.docker.com/engine/security/rootless/) -- Docker driver is not supported on non-amd64 architectures such as arm yet. For non-amd64 archs please use [other drivers]({{< ref "/docs/drivers/_index.md" >}}) - - On macOS, containers might get hung and require a restart of Docker for Desktop. See [docker/for-mac#1835](https://github.com/docker/for-mac/issues/1835) - The `ingress`, and `ingress-dns` addons are currently only supported on Linux. See [#7332](https://github.com/kubernetes/minikube/issues/7332) diff --git a/site/content/en/docs/drivers/includes/docker_usage.inc b/site/content/en/docs/drivers/includes/docker_usage.inc index d34467979413e049c0b05ae8d6e1d336ac4eea99..8b1fd6c694ade22301cbc4ea23bc18516effe8b4 100644 --- a/site/content/en/docs/drivers/includes/docker_usage.inc +++ b/site/content/en/docs/drivers/includes/docker_usage.inc @@ -1,7 +1,7 @@ ## Requirements - [Install Docker](https://hub.docker.com/search?q=&type=edition&offering=community&sort=updated_at&order=desc) 18.09 or higher -- amd64 system. +- amd64 or arm64 system. ## Usage diff --git a/site/content/en/docs/start/_index.md b/site/content/en/docs/start/_index.md index 85f2497263a6255c9578a3a578e1f9166013f9c1..cc33d27ab74efc21b99fc2a9d18e103c67bff116 100644 --- a/site/content/en/docs/start/_index.md +++ b/site/content/en/docs/start/_index.md @@ -90,11 +90,20 @@ brew link minikube Otherwise, download minikube directly: +### x86 + ```shell curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-darwin-amd64 sudo install minikube-darwin-amd64 /usr/local/bin/minikube ``` +### ARM + +```shell +curl -LO https://storage.googleapis.com/minikube/releases/latest/minikube-darwin-arm64 +sudo install minikube-darwin-arm64 /usr/local/bin/minikube +``` + {{% /mactab %}} {{% windowstab %}}