Skip to content

Commit

Permalink
Merge pull request #12993 from tommyang/patch-1
Browse files Browse the repository at this point in the history
Doc: Add macOS ARM64 Homebrew install option
  • Loading branch information
medyagh authored Nov 22, 2021
2 parents 276b5e0 + 266a5e3 commit d94b301
Showing 1 changed file with 17 additions and 2 deletions.
19 changes: 17 additions & 2 deletions site/content/en/docs/start/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ Click on the buttons that describe your target platform. For other architectures
{{% /quiz_row %}}

{{% quiz_row base="/macOS/ARM64/Stable" name="Installer type" %}}
{{% quiz_button option="Binary download" %}}
{{% quiz_button option="Binary download" %}} {{% quiz_button option="Homebrew" %}}
{{% /quiz_row %}}

{{% quiz_row base="/macOS/ARM64/Beta" name="Installer type" %}}
Expand Down Expand Up @@ -362,7 +362,7 @@ curl -L $u > minikube-beta.armv7hl.rpm && sudo rpm -Uvh minikube-beta.armv7hl.rp
{{% /quiz_instruction %}}

{{% quiz_instruction id="/macOS/x86-64/Stable/Homebrew" %}}
If the [Brew Package Manager](https://brew.sh/) is installed:
If the [Homebrew Package Manager](https://brew.sh/) is installed:

```shell
brew install minikube
Expand Down Expand Up @@ -398,6 +398,21 @@ sudo install minikube-darwin-arm64 /usr/local/bin/minikube
```
{{% /quiz_instruction %}}

{{% quiz_instruction id="/macOS/ARM64/Stable/Homebrew" %}}
If the [Homebrew Package Manager](https://brew.sh/) is installed:

```shell
brew install minikube
```

If `which minikube` fails after installation via brew, you may have to remove the old minikube links and link the newly installed binary:

```shell
brew unlink minikube
brew link minikube
```
{{% /quiz_instruction %}}

{{% quiz_instruction id="/macOS/ARM64/Beta/Binary download" %}}
```shell
r=https://api.github.com/repos/kubernetes/minikube/releases
Expand Down

0 comments on commit d94b301

Please sign in to comment.