Skip to content
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

Add installation instructions for Scoop and Winget #3376

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 11 additions & 0 deletions site/content/docs/user/quick-start.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,17 @@ On Windows via Chocolatey (https://chocolatey.org/packages/kind)
choco install kind
{{< /codeFromInline >}}

On Windows via Scoop (https://scoop.sh/#/apps?q=kind&id=faec311bb7c6b4a174169c8c02358c74a78a10c2)
{{< codeFromInline lang="powershell" >}}
scoop bucket add main
scoop install main/kind
{{< /codeFromInline >}}

On Windows via Winget (https://github.com/microsoft/winget-pkgs/tree/master/manifests/k/Kubernetes/kind)
{{< codeFromInline lang="powershell" >}}
winget install Kubernetes.kind
{{< /codeFromInline >}}

## Creating a Cluster

Creating a Kubernetes cluster is as simple as `kind create cluster`.
Expand Down