# Installer kind avec Homebrew, apk, chocolatey, apt, dnf, MacPorts, Nix, pacman, zypper, scoop, winget

Consultez les chemins d'installation, exécutables, métadonnées et notes de sécurité de kind pour les workflows d'agents IA.

## installation

```sh
sudo av install brew:kind
```

Commandes d'installation supplémentaires:

### macOS

- Homebrew (100%):

```sh
brew install kind
```

  Preuve: local Homebrew formula metadata

- MacPorts (94%):

```sh
sudo port install kind
```

  Preuve: MacPorts ports tree: sysutils/kind/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1

### Linux

- apk (92%):

```sh
sudo apk add kind
```

  Preuve: Alpine Linux edge package indexes: kind from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz

- Debian apt (92%):

```sh
sudo apt install kind
```

  Preuve: Debian stable package indexes: kind from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz

- dnf (92%):

```sh
sudo dnf install kind
```

  Preuve: Fedora Rawhide package metadata: kind from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst

- Nix (92%):

```sh
nix profile install nixpkgs#kind
```

  Preuve: nixpkgs package indexes: pkgs/by-name/ki/kind/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1

- pacman (92%):

```sh
sudo pacman -S kind
```

  Preuve: Arch Linux sync databases: kind from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz

- zypper (92%):

```sh
sudo zypper install kind
```

  Preuve: openSUSE Tumbleweed package metadata: kind from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst

### Windows

- Chocolatey (92%):

```sh
choco install kind
```

  Preuve: Chocolatey community package catalog: kind from http://community.chocolatey.org/api/v2/Packages?$filter=IsLatestVersion&$select=Id&$top=1000&$skiptoken='11','kav'

- Scoop (92%):

```sh
scoop install main/kind
```

  Preuve: Scoop official bucket manifest trees: bucket/kind.json from https://api.github.com/repos/ScoopInstaller/Main/git/trees/master?recursive=1

- winget (92%):

```sh
winget install --id Kubernetes.kind -e
```

  Preuve: Windows Package Manager source index: Kubernetes.kind from https://cdn.winget.microsoft.com/cache/source.msix

## Faits du paquet

- **Clé du paquet:** brew:kind
- **Gestionnaire de paquets:** Homebrew
- **Version:** 0.32.0
- **Résumé source:** Run local Kubernetes cluster in Docker
- **Page d'accueil:** <https://kind.sigs.k8s.io/>
- **Dépôt:** <https://github.com/kubernetes-sigs/kind>
- **Dernière mise à jour:** 2026-07-27T21:58:39+02:00
- **Généré:** 2026-08-03T19:37:03+00:00

## exécutables

- kind (alias)

## Comportement d'installation

- Bouteille: non disponible

## Version et fraîcheur

- page générée: 2026-08-03
- version du gestionnaire: 0.32.0
## Historique du projet et usages

kind, short for Kubernetes IN Docker, is a Kubernetes SIGs tool for running local Kubernetes clusters where each node is a Docker container. It was designed primarily for testing Kubernetes itself, but it also became a standard local-development and CI tool.

### Historique du projet

The kind design documents describe a suite of Go packages, a command-line interface, and node/base images for running local Kubernetes clusters cheaply and reproducibly. The initial design targeted Kubernetes testing, integration with kubetest, and clusters that could be replicated by any developer without cloud infrastructure.

kind's implementation model is intentionally Kubernetes-native: node containers run the Kubernetes components, and clusters are bootstrapped with kubeadm. The public docs emphasize multi-node and high-availability clusters, building Kubernetes release builds from source, support for Linux, macOS, and Windows, and conformance certification.

### Historique d'adoption

kind became one of the default tools for Kubernetes contributors, CI jobs, controller developers, and local cluster users who need fast disposable clusters. Its value is especially clear for tests that need real Kubernetes APIs without provisioning a managed cluster.

The package-manager metadata in this batch lists kind across Homebrew, Chocolatey, Debian, Fedora, MacPorts, Nix, Scoop, winget, Alpine, and openSUSE. That broad packaging spread reflects kind's role as a cross-platform Kubernetes developer utility.

### Modes d'utilisation

The common workflow is to install the kind binary, run kind create cluster, test against the generated kubeconfig, and delete the cluster afterward. More advanced users provide config.yaml files for multi-node clusters, port mappings, custom node images, local registries, and CI-specific settings.

kind is also used to build and test Kubernetes node images. Its release notes publish node-image digests and warn users to pin images by digest for reproducibility.

### Pourquoi les passionnés de paquets s'y intéressent

kind is package-nerd significant because it compressed an entire Kubernetes test cluster into a small CLI plus container images. That made Kubernetes integration tests scriptable on laptops and CI runners without a VM manager or cloud account.

It also sits at an interesting packaging boundary: the CLI is just one binary, but useful operation depends on Docker, podman, or nerdctl, kubeadm behavior, Kubernetes image versions, containerd changes, and pinned node-image digests.

### Chronologie

- Design: The initial kind design defined Kubernetes-in-Docker clusters as Docker-container nodes for local Kubernetes testing.
- 2020: Public interest and adoption grew as local Kubernetes-in-Docker workflows became common for development and CI.
- 2026: kind v0.32.0 release notes described Kubernetes 1.36.1 defaults, kubeadm v1beta4 support, containerd config v4 support, and Envoy replacing HAProxy for multi-control-plane load balancing.

### Related projects

- Kubernetes is the upstream system kind runs and tests.
- kubeadm is the bootstrap tool kind uses inside node images.
- Docker, podman, and nerdctl are supported container runtimes for local nodes.
- kubetest is named in the design and README as an integration target.

### Sources

- <https://github.com/kubernetes-sigs/kind>
- <https://github.com/kubernetes-sigs/kind/releases>
- <https://kind.sigs.k8s.io/>
- <https://kind.sigs.k8s.io/docs/design/initial>
- <https://kind.sigs.k8s.io/docs/user/quick-start/>


## Notes de sécurité

infrastructure mutation or orchestration signal.

- **Risque Geiger:** orange / moyen
- infrastructure mutation or orchestration signal


## Configuration and credential file locations

These source-backed paths show where this package keeps local settings or durable credentials. Automic Vault can use them as review targets for secret scanning, migration, and command approval.


## Configuration files

- Unix: config.yaml
## Autres enregistrements de gestionnaires de paquets

- Debian apt - kind - 0.27.0-1+b2: normalized package name match | Debian stable package indexes: kind from https://deb.debian.org/debian/dists/stable/main/binary-amd64/Packages.xz | Kubernetes IN Docker - local clusters for testing Kubernetes (program) | https://github.com/kubernetes-sigs/kind
- Nix - kind: normalized package name match | nixpkgs package indexes: pkgs/by-name/ki/kind/package.nix from https://api.github.com/repos/NixOS/nixpkgs/git/trees/master?recursive=1
- apk - kind - 0.31.0-r5: normalized package name match | Alpine Linux edge package indexes: kind from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Kubernetes IN Docker - local clusters for testing Kubernetes | https://kind.sigs.k8s.io/
- apk - kind-bash-completion - 0.31.0-r5: normalized package name match | Alpine Linux edge package indexes: kind-bash-completion from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Bash completions for kind | https://kind.sigs.k8s.io/
- apk - kind-fish-completion - 0.31.0-r5: normalized package name match | Alpine Linux edge package indexes: kind-fish-completion from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Fish completions for kind | https://kind.sigs.k8s.io/
- apk - kind-zsh-completion - 0.31.0-r5: normalized package name match | Alpine Linux edge package indexes: kind-zsh-completion from https://dl-cdn.alpinelinux.org/alpine/edge/community/x86_64/APKINDEX.tar.gz | Zsh completions for kind | https://kind.sigs.k8s.io/
- dnf - kind - 0.31.0-5.fc45: normalized package name match | Fedora Rawhide package metadata: kind from https://dl.fedoraproject.org/pub/fedora/linux/development/rawhide/Everything/x86_64/os/repodata/07190dc5ae9f35ae73866675fed6d95fe6e8d9fe22c9d7cdf85862cb2ed24a4c-primary.xml.zst | Kubernetes IN Docker | https://github.com/kubernetes-sigs/kind
- pacman - kind - 0.32.0-2: normalized package name match | Arch Linux sync databases: kind from https://geo.mirror.pkgbuild.com/extra/os/x86_64/extra.db.tar.gz | Kubernetes IN Docker - local clusters for testing Kubernetes | https://kind.sigs.k8s.io/
- zypper - kind - 0.32.0-1.4: normalized package name match | openSUSE Tumbleweed package metadata: kind from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | Kubernetes IN Docker - local clusters for testing Kubernetes | https://github.com/kubernetes-sigs/kind/
- zypper - kind-bash-completion - 0.32.0-1.4: normalized package name match | openSUSE Tumbleweed package metadata: kind-bash-completion from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | Bash Completion for kind | https://github.com/kubernetes-sigs/kind/
- zypper - kind-fish-completion - 0.32.0-1.4: normalized package name match | openSUSE Tumbleweed package metadata: kind-fish-completion from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | Fish Completion for kind | https://github.com/kubernetes-sigs/kind/
- zypper - kind-zsh-completion - 0.32.0-1.4: normalized package name match | openSUSE Tumbleweed package metadata: kind-zsh-completion from https://download.opensuse.org/tumbleweed/repo/oss/repodata/50b07339cb64c8ed4091bdbabddadc1ff5737b090e478818a195b40d8a3292861a879139b4a3987c31109699fde9fbf4a716367ddf4eef77da75f96e3193d6ed-primary.xml.zst | Zsh Completion for kind | https://github.com/kubernetes-sigs/kind/
- MacPorts - kind: normalized package name match | MacPorts ports tree: sysutils/kind/Portfile from https://api.github.com/repos/macports/macports-ports/git/trees/master?recursive=1
- Chocolatey - kind: normalized package name match | Chocolatey community package catalog: kind from http://community.chocolatey.org/api/v2/Packages?$filter=IsLatestVersion&$select=Id&$top=1000&$skiptoken='11','kav'
- Scoop - main/kind: normalized package name match | Scoop official bucket manifest trees: bucket/kind.json from https://api.github.com/repos/ScoopInstaller/Main/git/trees/master?recursive=1
- winget - Kubernetes.kind: normalized package name match | Windows Package Manager source index: Kubernetes.kind from https://cdn.winget.microsoft.com/cache/source.msix


## Combined YAML source

View the package source record on GitHub. [combined/kind.yml](https://github.com/mxcl/pkgdb/blob/main/combined/kind.yml)


## Sources

- pkg.so package database
- Geiger risk classifier
- curated configuration and credential file locations
- curated package history
- pkgdb category and tag curation
- external package-manager database matches
- cross-ecosystem install command graph
