back to home

kubernetes-sigs / kind

Kubernetes IN Docker - local clusters for testing Kubernetes

15,099 stars
1,722 forks
223 issues
GoShellDockerfile

AI Architecture Analysis

This repository is indexed by RepoMind. By analyzing kubernetes-sigs/kind in our AI interface, you can instantly generate complete architecture diagrams, visualize control flows, and perform automated security audits across the entire codebase.

Our Agentic Context Augmented Generation (Agentic CAG) engine loads full source files into context on-demand, avoiding the fragmentation of traditional RAG systems. Ask questions about the architecture, dependencies, or specific features to see it in action.

Source files are only loaded when you start an analysis to optimize performance.

Embed this Badge

Showcase RepoMind's analysis directly in your repository's README.

[![Analyzed by RepoMind](https://img.shields.io/badge/Analyzed%20by-RepoMind-4F46E5?style=for-the-badge)](https://repomind.in/repo/kubernetes-sigs/kind)
Preview:Analyzed by RepoMind

Repository Overview (README excerpt)

Crawler view

Please see Our Documentation for more in-depth installation etc. kind is a tool for running local Kubernetes clusters using Docker container "nodes". kind was primarily designed for testing Kubernetes itself, but may be used for local development or CI. If you have [go] 1.16+ and [docker], [podman] or [nerdctl] installed is all you need! kind consists of: • Go [packages][packages] implementing [cluster creation][cluster package], [image build][build package], etc. • A command line interface ([ ][kind cli]) built on these packages. • Docker [image(s)][images] written to run systemd, Kubernetes, etc. • [ ][kubetest] integration also built on these packages (WIP) kind bootstraps each "node" with [kubeadm][kubeadm]. For more details see [the design documentation][design doc]. **NOTE**: kind is still a work in progress, see the [1.0 roadmap]. Installation and usage For a complete [install guide] see [the documentation here][install guide]. You can install kind with . **NOTE**: please use the latest go to do this. KIND is developed with the latest stable go, see for the exact version we're using. This will put in . If you encounter the error after installation then you may need to either add that directory to your as shown here or do a manual installation by cloning the repo and run from the repository. Without installing go, kind can be built reproducibly with docker using . Stable binaries are also available on the [releases] page. Stable releases are generally recommended for CI usage in particular. To install, download the binary for your platform from "Assets" and place this into your : On Linux: On macOS via Homebrew: On macOS via MacPorts: On macOS via Bash: On Windows: To use kind, you will need to [install docker]. Once you have docker running you can create a cluster with: To delete your cluster use: To create a cluster from Kubernetes source: • ensure that Kubernetes is cloned in • build a node image and create a cluster with: Multi-node clusters and other advanced features may be configured with a config file, for more usage see [the docs][user guide] or run 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], [@BenTheElder], and [@stmcginnis] - 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 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]. Why kind? • kind supports multi-node (including HA) clusters • kind supports building Kubernetes release builds from source • support for make / bash or docker, in addition to pre-published builds • kind supports Linux, macOS and Windows • kind is a CNCF certified conformant Kubernetes installer Code of conduct Participation in the Kubernetes community is governed by the [Kubernetes Code of Conduct]. [go]: https://golang.org/ [go-supported]: https://golang.org/doc/devel/release.html#policy [docker]: https://www.docker.com/ [podman]: https://podman.io/ [nerdctl]: https://github.com/containerd/nerdctl [community page]: https://kubernetes.io/community/ [Kubernetes Code of Conduct]: code-of-conduct.md [Go Report Card Badge]: https://goreportcard.com/badge/sigs.k8s.io/kind [Go Report Card]: https://goreportcard.com/report/sigs.k8s.io/kind [conformance tests]: https://github.com/kubernetes/community/blob/master/contributors/devel/sig-architecture/conformance-tests.md [packages]: ./pkg [cluster package]: ./pkg/cluster [build package]: ./pkg/build [kind cli]: ./main.go [images]: ./images [kubetest]: https://github.com/kubernetes/test-infra/tree/master/kubetest [kubeadm]: https://kubernetes.io/docs/reference/setup-tools/kubeadm/kubeadm/ [design doc]: https://kind.sigs.k8s.io/docs/design/initial [user guide]: https://kind.sigs.k8s.io/docs/user/quick-start [SIG-Testing Mailing List]: https://groups.google.com/forum/#!forum/kubernetes-sig-testing [issue tracker]: https://github.com/kubernetes-sigs/kind/issues [filing an issue]: https://github.com/kubernetes-sigs/kind/issues/new [Kubernetes Slack]: http://slack.k8s.io/ [#kind]: https://kubernetes.slack.com/messages/CEKK1KTN2/ [1.0 roadmap]: https://kind.sigs.k8s.io/docs/contributing/1.0-roadmap [install docker]: https://docs.docker.com/install/ [@BenTheElder]: https://github.com/BenTheElder [@munnerz]: https://github.com/munnerz [@aojea]: https://github.com/aojea [@amwat]: https://github.com/amwat [@stmcginnis]: https://github.com/stmcginnis [contributor guide]: https://kind.sigs.k8s.io/docs/contributing/getting-started [releases]: https://github.com/kubernetes-sigs/kind/releases [install guide]: https://kind.sigs.k8s.io/docs/user/quick-start/#installation [modules]: https://github.com/golang/go/wiki/Modules