Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Kind

https://kind.sigs.k8s.io/

Installation

./kind_install.sh [VERSION]

TL;DR

# 1 node cluster
kind create cluster
export KUBECONFIG="$(kind get kubeconfig-path --name="kind")"
kubectl cluster-info

# 3 masters + 3 workers cluster
kind create cluster --confifg cplane-ha.yml
export KUBECONFIG="$(kind get kubeconfig-path --name="kind")"
kubectl cluster-info
kubectl get nodes

Usage

Create a kind cluster :

kind create cluster

Interact with the cluster :

export KUBECONFIG="$(kind get kubeconfig-path --name="kind")"
kubectl cluster-info

Load a docker image in the cluster :

kind load docker-image my-custom-image

Delete a kind cluster :

kind delete cluster

Configuring your kind cluster

Is it possible to use a configuration file to customize your kind cluster (Multi-Node, Control-Plane HA...)

# Create a cluster with 3 control-plane nodes and 3 workers
kind create cluster --config cplane-ha.yml

# Create a cluster with 1 control-plane nodes and 3 workers
kind create cluster --config multinode.yml

See https://kind.sigs.k8s.io/docs/user/quick-start/#configuring-your-kind-cluster for details.

Auto Completion

To enable completion :

# for bash users
kind completion bash > ~/.kind-completion
source ~/.kind-completion

# for zsh users
kind completion zsh > /usr/local/share/zsh/site-functions/_kind
autoload -U compinit && compinit

Ingress with kind

https://banzaicloud.com/blog/kind-ingress/

Expose ports when deploying to kind