kind create cluster --config kind-config.yml
kind load docker-image bun-wish-list
kind get clusters
kind delete cluster --name <cluster-name>
docker exec -it kind-control-plane crictl images
docker exec -it desktop-control-plane crictl rmi de86a6130d1f3
kind: Cluster
apiVersion: kind.x-k8s.io/v1alpha4
nodes:
- role: control-plane
- role: worker
- role: worker  # Original worker
- role: worker  # New worker you want to add

---

- role: control-plane
  image: kindest/node:v1.29.0
- role: worker
  image: kindest/node:v1.28.0
kind create cluster --name my-cluster --config kind-config.yml --image kindest/node:v1.29.0
apiVersion: kind.x-k8s.io/v1alpha4
kind: Cluster
nodes:
- role: control-plane
  extraPortMappings:
  - containerPort: 30000
    hostPort: 30000
    listenAddress: "0.0.0.0" # Optional, defaults to "0.0.0.0"
    protocol: tcp # Optional, defaults to tcp
- role: worker