Kind 문서 Home

1 개요[ | ]

Kind-logo.png

kind는 도커 컨테이너 "노드"를 사용하여 로컬 Kubernetes 클러스터를 실행하기 위한 도구입니다. kind는 주로 Kubernetes 자체를 테스트하기 위해 설계되었지만 로컬 개발이나 CI에 사용될 수도 있습니다.

go 1.16+ 버전을 사용하고 docker, podman 또는 nerdctl가 설치되었다면, go install sigs.k8s.io/kind@v0.22.0 && kind create cluster만 하면 됩니다!

파일:Kind-create-cluster.png

kind는 다음과 같이 구성됩니다:

kind는 kubeadm을 사용하여 각 "노드"를 부트스트랩합니다 . 자세한 내용은 설계 문서를 참조하세요 .

참고: kind는 진행중입니다. 1.0 로드맵을 참조하세요.

2 Installation and usage[ | ]

For more detailed instructions see the user guide.

You can install kind with go install sigs.k8s.io/kind@v0.22.0 (for go 1.17+). This will put kind in $(go env GOPATH)/bin. You may need to add that directory to your $PATH as shown here if you encounter the error kind: command not found after installation.

To use kind, you will also 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 user guide or run kind [command] --help

3 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 directly 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.

4 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

4.1 Code of conduct[ | ]

Participation in the Kubernetes community is governed by the Kubernetes Code of Conduct.

5 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}