Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 283 Bytes

README.md

File metadata and controls

17 lines (12 loc) · 283 Bytes

kind

brew install kind

# 创建集群
kind create cluster --config config.yaml

# 使用
kubectl config use-context kind-kind
kubectl get pod -A

#删除集群
kind delete cluster --name kind-cluster