Add mention of the Windows Package Manager

Update the installation guide to mention winget, the Windows Package Manager.

Minikube is in the repository, and the command I listed works correctly:
andre@IRIDIUM-MMXX  C:\Windows\System32                                                                      [16:11]
❯ winget search minikube
Name     Id                  Version
------------------------------------
minikube Kubernetes.minikube 1.15.1
andre@IRIDIUM-MMXX  C:\Windows\System32                                                                      [16:12]
❯ winget install minikube
Found minikube [Kubernetes.minikube]
This application is licensed to you by its owner.
Microsoft is not responsible for, nor does it grant any licences to, third-party packages.
Downloading https://storage.googleapis.com/minikube/releases/latest/minikube-installer.exe
  ██████████████████████████████  23.7 MB / 23.7 MB
Successfully verified installer hash
Starting package install...
Successfully installed
pull/9949/head
Andrea Spadaccini 2020-12-13 16:17:00 +00:00 committed by GitHub
parent 0497d1221f
commit 720a32d7d5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 11 additions and 1 deletions

View File

@ -98,12 +98,22 @@ sudo install minikube-darwin-amd64 /usr/local/bin/minikube
{{% /mactab %}}
{{% windowstab %}}
If the [Chocolatey Package Manager](https://chocolatey.org/) is installed, use it to install minikube:
### Windows Package Manager
If the [Windows Package Manager](https://docs.microsoft.com/en-us/windows/package-manager/) is installed, use the following command to install minikube:
```shell
winget install minikube
```
### Chocolatey
If the [Chocolatey Package Manager](https://chocolatey.org/) is installed, use the following command:
```shell
choco install minikube
```
### Stand-alone Windows Installer
Otherwise, download and run the [Windows installer](https://storage.googleapis.com/minikube/releases/latest/minikube-installer.exe)
{{% /windowstab %}}