No description
  • Go 83.5%
  • Shell 11%
  • Dockerfile 2.4%
  • Makefile 1%
  • HTML 0.9%
  • Other 1.2%
Find a file
Nicolas De Loof b25a6ed649
set and use io.kubernetes.pod.namespace=kube-system label
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
2024-07-31 11:41:15 +02:00
.github Bump the actions group across 1 directory with 2 updates 2024-07-15 08:20:40 +00:00
cmd/kind Delete ioutil as it is Deprecated since Go 1.16 2023-04-19 04:51:34 +08:00
hack Remove DOCKER_CLI_EXPERIMENTAL usage 2024-06-28 13:45:39 +00:00
images implement network policies 2024-07-19 16:51:11 +00:00
logo add project logo 2019-01-22 01:10:05 +02:00
pkg set and use io.kubernetes.pod.namespace=kube-system label 2024-07-31 11:41:15 +02:00
site Fix Ingress migration guide link error 2024-07-23 21:40:02 +08:00
.gitignore add cgroup2 CI 2021-01-21 15:21:40 +09:00
.go-version update go / runc to go 1.22 / 1.1.13 2024-07-01 14:30:17 -07:00
code-of-conduct.md Revert "move COC so github will recognize it" 2018-09-24 17:14:07 -07:00
CONTRIBUTING.md overhaul contributor getting started guide 2020-12-02 19:57:19 -08:00
go.mod Update Go dependencies 2024-05-24 15:32:22 -05:00
go.sum Update Go dependencies 2024-05-24 15:32:22 -05:00
LICENSE Initial Commit 2018-09-12 14:44:29 -07:00
main.go move commands into pkg/ 2019-11-01 11:31:19 -07:00
Makefile force GOTOOLCHAIN="go${GO_VERSION}" for now 2024-04-01 15:52:31 -07:00
netlify.toml update to latest hugo, obtain hugo using go instead of docker 2023-05-16 22:05:08 -07:00
OWNERS promote stmcginnis to reviwer 2024-05-17 10:30:09 -07:00
README.md update install docs for 0.23.0 2024-05-13 18:59:56 -07:00
SECURITY_CONTACTS Initial Commit 2018-09-12 14:44:29 -07:00

kind

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 go install sigs.k8s.io/kind@v0.23.0 && kind create cluster is all you need!

kind consists of:

kind bootstraps each "node" with kubeadm. For more details see the design documentation.

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.

You can install kind with go install sigs.k8s.io/kind@v0.23.0.

NOTE: please use the latest go to do this. KIND is developed with the latest stable go, see .go-version for the exact version we're using.

This will put kind in $(go env GOPATH)/bin. If you encounter the error kind: command not found after installation then you may need to either add that directory to your $PATH as shown here or do a manual installation by cloning the repo and run make build from the repository.

Without installing go, kind can be built reproducibly with docker using make build.

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 $PATH:

On Linux:

# 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:

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:

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

# OR via Chocolatey (https://chocolatey.org/packages/kind)
choco install kind

To use kind, you will need to install docker. Once you have docker running you can create a cluster with:

kind create cluster

To delete your cluster use:

kind delete cluster

To create a cluster from Kubernetes source:

  • ensure that Kubernetes is cloned in $(go env GOPATH)/src/k8s.io/kubernetes
  • build a node image and create a cluster with:
kind build node-image
kind create cluster --image kindest/node:latest

Multi-node clusters and other advanced features may be configured with a config file, for more usage see the docs or run kind [command] --help

Community

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

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.

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.