Difference between revisions of "Kubernetes/Kind"
		
		
		
		
		
		Jump to navigation
		Jump to search
		
			
		
		
	
 (Created page with "[https://github.com/kubernetes-sigs/kind/ kind] is a tool for running local Kubernetes clusters using Docker container "nodes". kind was primarily designed for testing Kuberne...")  | 
			
(No difference) 
 | 
Revision as of 16:43, 28 December 2021
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.
Install
REPO=kubernetes-sigs 
PROJECT=kind
VERSION=$(curl --silent "https://api.github.com/repos/${REPO}/${PROJECT}/releases/latest" | jq -r .tag_name); echo $VERSION
TEMPDIR=$(mktemp -d)
curl -L https://kind.sigs.k8s.io/dl/${VERSION}/kind-linux-amd64 -o $TEMPDIR/kind
sudo install $TEMPDIR/kind /usr/local/bin/kind
# Completion
source <(kind completion bash)