在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
开源软件名称(OpenSource Name):kubernetes-sigs/kind开源软件地址(OpenSource Url):https://github.com/kubernetes-sigs/kind开源编程语言(OpenSource Language):Go 82.4%开源软件介绍(OpenSource Introduction):Our Documentation for more in-depth installation etc.Please seekind 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.17+) and docker installed For older versions use 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 usageFor a complete install guide see the documentation here. You can install kind with NOTE: please use the latest go to do this. KIND is developed with the latest stable go, see NOTE: This will put 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: curl -Lo ./kind "https://kind.sigs.k8s.io/dl/v0.14.0/kind-$(uname)-amd64"
chmod +x ./kind
mv ./kind /some-dir-in-your-PATH/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.14.0/kind-darwin-amd64
# for M1 / ARM Macs
[ $(uname -m) = arm64 ] && curl -Lo ./kind https://kind.sigs.k8s.io/dl/v0.14.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.14.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:
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 CommunityPlease reach out for bugs, feature requests, and other issues! The maintainers of this project are reachable via:
Current maintainers are @BenTheElder, @munnerz, @aojea, and @amwat - 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 |
2023-10-27
2022-08-15
2022-08-17
2022-09-23
2022-08-13
请发表评论