Just re-confirmed that (unlike Minikube) there is no command line argument to create multiple nodes when creating clusters with Kind. The good news is, that you can specify the name and different images for these nodes at the same time.
apiVersion: kind.x-k8s.io/v1alpha4
kind: Cluster
nodes:
- role: control-plane
- role: worker
- role: worker
- role: worker
In fact, most of the time when using it just makes sense to start with a
kind.yaml
file and grow with it (sort of like the justification for
docker-compose.yaml
when working even with single image docker
containerized applications.
Related:
Tags:
#k8s #kind #learning