"Kind 문서 Home"의 두 판 사이의 차이

(새 문서: ==개요== 300px kind is a tool for running local Kubernetes clusters using Docker container “nodes”. kind was primarily designed for testing Kubern...)
 
 
3번째 줄: 3번째 줄:
[[파일:kind-logo.png|300px]]
[[파일:kind-logo.png|300px]]


[[kind]] is a tool for running local Kubernetes clusters using Docker container “nodes”.
[[kind]]는 도커 컨테이너 "노드"를 사용하여 로컬 Kubernetes 클러스터를 실행하기 위한 도구입니다.
kind was primarily designed for testing Kubernetes itself, but may be used for local development or CI.
kind는 주로 Kubernetes 자체를 테스트하기 위해 설계되었지만 로컬 개발이나 CI에 사용될 수도 있습니다.


If you have go 1.16+ and docker, podman or nerdctl installed go install sigs.k8s.io/kind@v0.22.0 && kind create cluster is all you need!
go 1.16+ 버전을 사용하고 docker, podman 또는 nerdctl가 설치되었다면, <code>go install sigs.k8s.io/kind@v0.22.0 && kind create cluster</code>만 하면 됩니다!


[[파일:kind-create-cluster.png]]
[[파일:kind-create-cluster.png]]


kind consists of:
kind는 다음과 같이 구성됩니다:
* [https://github.com/kubernetes-sigs/kind/tree/main/pkg/cluster 클러스터 생성], [https://github.com/kubernetes-sigs/kind/tree/main/pkg/build 이미지 빌드] 등을 구현한 Go [https://github.com/kubernetes-sigs/kind/tree/main/pkg 패키지]
* 이러한 패키지로 구축된 명령줄 인터페이스 ([https://github.com/kubernetes-sigs/kind/tree/main/main.go kind])
* systemd, Kubernetes 등을 구동하기 위해 작성된 Docker [https://github.com/kubernetes-sigs/kind/tree/main/images 이미지]
* 이러한 패키지로 구축된 <code>[https://github.com/kubernetes/test-infra/tree/master/kubetest kubetest]</code> 연계 (WIP)


Go packages implementing cluster creation, image build, etc.
kind는 [[kubeadm]]을 사용하여 각 "노드"를 부트스트랩합니다 . 자세한 내용은 [[kind 설계|설계 문서]]를 참조하세요 .
A command line interface (kind) built on these packages.
Docker image(s) written to run systemd, Kubernetes, etc.
kubetest integration also built on these packages (WIP)
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.
'''참고''': kind는 진행중입니다. [[kind 1.0 로드맵|1.0 로드맵]]을 참조하세요.


==Installation and usage==
==Installation and usage==

2024년 5월 3일 (금) 10:21 기준 최신판

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 }}