Starting with a single control plane node in a clu...
# rke2
q
Starting with a single control plane node in a cluster, should it be ok to add additional control plane nodes in parallel? I currently do it sequentially and don't know if switching to parallel add would cause problems with etcd or something else
w
shouldn't. I spin up 7 instances at once in AWS, and they all start at the same time, as long as they are configured properly ( $leader with no server: token, others DO have server: token) they'll load in fine
👍 1
c
you can try to add as many servers as you like at once, but it will not actually work immediately. You can only add one member at a time to the etcd cluster, so if there is one in the process of joining, the others will fail and retry.
👍 1
Note that this is for servers with etcd role. You can add as many control-plane-only servers as you want. But there’s not really much point in that…
I wouldn’t ever have more than 5 etcd nodes (3 is usually good) or two control-plane nodes. 3 nodes with both roles is usually a good compromise.