XUtils

kind

Kubernetes IN Docker - local clusters for testing Kubernetes.


For AMD64 / x86_64

[ \((uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.23.0/kind-\)(uname)-amd64

For ARM64

[ \((uname -m) = aarch64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.23.0/kind-\)(uname)-arm64 chmod +x ./kind sudo mv ./kind /usr/local/bin/kind


On macOS via Homebrew:

```console
brew install kind

On macOS via MacPorts:

sudo port selfupdate && sudo port install kind

On macOS via Bash:

# For Intel Macs
[ $(uname -m) = x86_64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.23.0/kind-darwin-amd64
# For M1 / ARM Macs
[ $(uname -m) = arm64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.23.0/kind-darwin-arm64
chmod +x ./kind
mv ./kind /some-dir-in-your-PATH/kind

On Windows:

”`powershell curl.exe -Lo kind-windows-amd64.exe https://kind.sigs.k8s.io/dl/v0.23.0/kind-windows-amd64 Move-Item .\kind-windows-amd64.exe c:\some-dir-in-your-PATH\kind.exe

Community

Please reach out for bugs, feature requests, and other issues! The maintainers of this project are reachable via:

  • [Kubernetes Slack] in the [#kind] channel
  • [filing an issue] against this repo
  • The Kubernetes [SIG-Testing Mailing List]

Current maintainers are [@aojea] and [@BenTheElder] - feel free to reach out if you have any questions!

Pull Requests are very welcome! If you’re planning a new feature, please file an issue to discuss first.

Check the [issue tracker] for help wanted issues if you’re unsure where to start, or feel free to reach out to discuss. 🙂

See also: our own [contributor guide] and the Kubernetes [community page].


Articles

  • coming soon...